cancel
Showing results for 
Search instead for 
Did you mean: 

Amount in words

former_member187457
Active Contributor
0 Kudos

hi all

i want to convert number into words........

like 201.25$

Two Hundred One Dollars And 25 Cents****************

thats my requirment.......

plz help me....

zthnxs

Rohit

Accepted Solutions (0)

Answers (4)

Answers (4)

former_member187457
Active Contributor
0 Kudos

thnx

former_member196280
Active Contributor
0 Kudos

Use below function module

CALL FUNCTION 'SPELL_AMOUNT'

EXPORTING

LANGUAGE = SY-LANGU

CURRENCY = 'USD'

AMOUNT = '201.25'

FILLER = SPACE

IMPORTING

IN_WORDS = SPELL

EXCEPTIONS

NOT_FOUND = 1

TOO_LARGE = 2.

**Display SPELL-WORD

Close the thread once your question is answered.

Regards,

Sairam

former_member187457
Active Contributor
0 Kudos

hi SR

now the probelm is tht number after decimal has to be printed in numaric......

i.e. two hunderd ten Dollars And <b>21</b> cents**********

plz help.....

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please try these FM.

HR_IN_CHG_INR_WRDS

SPELL_AMOUNT

Regards,

Ferry Lianto

amit_khare
Active Contributor
0 Kudos

use FM SPELL_AMOUNT

Refer link for sample -

Regards,

Amit

Reward all helpful replies.