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
564

Hai SDNs,

Please let me know the function module for converting numbers into words( example: 10000 , as Ten Thousand). Thanks in advance.

Regards,

aravind

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
536

chk the program RF_SPELL

5 REPLIES 5
Read only

anversha_s
Active Contributor
0 Likes
536

hi,

DATA v_int TYPE i VALUE '1000'.
DATA words LIKE SPELL.

CALL FUNCTION 'SPELL_AMOUNT'
 EXPORTING
   AMOUNT          = v_int
   LANGUAGE        = SY-LANGU
 IMPORTING
   IN_WORDS        = words
          .
WRITE words-word.

Rgds

Anver

Read only

Former Member
0 Likes
537

chk the program RF_SPELL

Read only

Former Member
0 Likes
536

for INR

this is best one.

HR_IN_CHG_INR_WRDS

regards

Prabhu

Read only

Former Member
0 Likes
536

Hi Arvind,

You can use the fM: HR_IN_CHG_INR_WRDS if you want for Indian currecy.

Regards,

Ravi

Read only

Former Member
0 Likes
536

Hai,

Thanks for your response. My problem is solved.

regards,

aravind.