Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Number to words

Former Member
0 Kudos

Hi,

Is there any function module to convert number to words..

For example: 18000 to Eighteen thousand dollars only.

thanks

Bala

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Function module SPELL_AMOUNT should provide what you need.

Regards,

Nick

3 REPLIES 3

Former Member
0 Kudos

Function module SPELL_AMOUNT should provide what you need.

Regards,

Nick

Former Member
0 Kudos

CALL FUNCTION 'SPELL_AMOUNT'

EXPORTING

LANGUAGE = SY-LANGU

CURRENCY = T001-WAERS

AMOUNT = SUM_UBKNT

FILLER = SPACE

IMPORTING

IN_WORDS = SPELL

EXCEPTIONS

NOT_FOUND = 1

TOO_LARGE = 2.

0 Kudos

Hi,

Try using the fn module,

SPELL_AMOUNT