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: 

FUNCTION MODULE

Former Member
0 Kudos
98

hello can you give the function name which converts numerals into words in smartforms

1 ACCEPTED SOLUTION

Former Member
0 Kudos
79

Use this function module

'SPELL_AMOUNT'

Regards,

Dharani.

4 REPLIES 4

Former Member
0 Kudos
79

u can use FM SPELL_AMOUNT or HR_IN_CHG_INR_WRDS

in case of Amounts .

for other things like 1 = ONE , better to hard code.

regards

Prabhu

Former Member
0 Kudos
80

Use this function module

'SPELL_AMOUNT'

Regards,

Dharani.

anversha_s
Active Contributor
0 Kudos
79

hi,

try this.

CALL FUNCTION 'SPELL_AMOUNT'

EXPORTING

amount = amount

currency = 'INR'

filler = ' '

language = 'E'

IMPORTING

in_words = amountrs.

rgds

anver

pls mark points for hlpful asnwers

Former Member
0 Kudos
79

THANKS