cancel
Showing results for 
Search instead for 
Did you mean: 

description for amount in sap scripts

Former Member
0 Kudos

hi,

how to get the text desdription for the amount in figures in sap scripts.

provide me detailed answer,

thank u

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hiii

u need to use the FM 'HR_IN_CHG_INR_WRDS'

to add amt field in scripts

regards

Jaipal

Former Member
0 Kudos

Hello,

You can use :

CALL FUNCTION 'SPELL_AMOUNT'

EXPORTING

LANGUAGE = SY-LANGU

CURRENCY = CURR " EUR

AMOUNT = '1000.00'

FILLER = SPACE

IMPORTING

IN_WORDS = WF_SPELL

EXCEPTIONS

NOT_FOUND = 1

TOO_LARGE = 2.

WF_SPELL will have the Amount in words.

Regards

Saket Sharma

former_member196280
Active Contributor
0 Kudos

Use function module SPELL_AMOUNT to get the amound display in words.

Regards,

SaiRam