Google Search - Blog...........

ABAP - Display Amount In Words Using Function Module HR_IN_CHG_INR_WRDS.

report ztest.

data: word(20) type c.

CALL FUNCTION 'HR_IN_CHG_INR_WRDS'
EXPORTING
AMT_IN_NUM = '10000000'
IMPORTING
AMT_IN_WORDS = word.

write:/ word.


Related Topic:

- Display Amount In Words Using FM SPELL_AMOUNT

1 comment:

  1. Hi Venkat,

    First of all I would like to congratulate you for your efforts and sincere dedication in helping others. Your program have been really usefull to me but I had a small request. As I am a begineer to ABAP, I would request you to please post your programs for starters also.

    ReplyDelete