Application Development and Automation 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: 
Read only

FUNCTION MODULE

Former Member
0 Likes
419

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
400

Use this function module

'SPELL_AMOUNT'

Regards,

Dharani.

4 REPLIES 4
Read only

Former Member
0 Likes
400

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

Read only

Former Member
0 Likes
401

Use this function module

'SPELL_AMOUNT'

Regards,

Dharani.

Read only

anversha_s
Active Contributor
0 Likes
400

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

Read only

Former Member
0 Likes
400

THANKS