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: 

FM to display number in words?

Former Member
0 Kudos

hi friends..

can you tel me the fm

to display number in words

1 ACCEPTED SOLUTION

anversha_s
Active Contributor
0 Kudos

hi,

Here comes!!

data: words(50) type c.
 
call function 'HR_IN_CHG_INR_WRDS'
     exporting
          amt_in_num   = '100000'
     importing
          amt_in_words = words.
 
 
write:/ words.

Also u can use the FM - > spell_amount or RF_SPELL.

Rgds

Anversha

1 REPLY 1

anversha_s
Active Contributor
0 Kudos

hi,

Here comes!!

data: words(50) type c.
 
call function 'HR_IN_CHG_INR_WRDS'
     exporting
          amt_in_num   = '100000'
     importing
          amt_in_words = words.
 
 
write:/ words.

Also u can use the FM - > spell_amount or RF_SPELL.

Rgds

Anversha