cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms

shaik_zia
Explorer
0 Kudos

HI please tell me the Function Module name used to convert figures into words

eg: i have to convert <b>1150</b> pounds into words as <b>one thousand one hundred and fifty pounds</b> only,,

if one knows the answer please tell me ASAP or mail to my id mohammed.zia@rediffmail.com

points will be rewarded,,,

thanks in advance

Accepted Solutions (0)

Answers (2)

Answers (2)

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

Use spell amount,but add one more zero with the input.

Concatenate pounds with the output.

Jayanthi Jayaraman

Former Member
0 Kudos

Function module spell_amount

1) You can enter values upto 999 trillion ie it can accept upto 15 digits.

2) Upto this range it will converts into number into words.

3) To know more about this just check table TO15Z which actually converts numbers into words.

Regards

Former Member
0 Kudos
CALL FUNCTION 'SPELL_AMOUNT'
       EXPORTING
            AMOUNT    = PAMOUNT
            CURRENCY  = 'EUR' 
            FILLER    = SPACE
            LANGUAGE  = 'E'
       IMPORTING
            IN_WORDS  = T_SPELL
       EXCEPTIONS
            NOT_FOUND = 1
            TOO_LARGE = 2
            OTHERS    = 3.