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

Coversion

Former Member
0 Likes
568

Hi,

How can i convert number(ex 12,50) to words(ex twelve hndred and fifty).

what function moule an i use?? or there be any other idea on this..

thanks in advace

Hi,

How can i convert number(ex 12,50) to words(ex twelve hndred and fifty).

what function moule an i use?? or there be any other idea on this..

thanks in advace

4 REPLIES 4
Read only

Former Member
0 Likes
536

check FM SPELL_AMOUNT or HR_IN_CHG_INR_WRDS

call function 'SPELL_AMOUNT'

exporting

amount = w_amt1

currency = 'INR'

language = sy-langu

importing

in_words = w_spellwords

.

regards

Prabhu

Read only

Former Member
0 Likes
536

You can use FM SPELL_AMOUNT.

Best Regards,

Vibha

*Please mark all the helpful answers

Read only

Former Member
0 Likes
536

use fn module 'SPELL_AMOUNT'

regards

Shiba prasad

Read only

Former Member
0 Likes
536

hi

good

i dont think there is any function module which ll conver the number in to the word, for that you have to write the logic

store the whole number in a variable and use the SPLIT statement to split the number accordingly.

Take the variable and store hundred and thousand,

while you concatenate the whole as per the number concatenate hundred and thousand accordingly.

thanks

mrutyun^