cancel
Showing results for 
Search instead for 
Did you mean: 

amount in paise

Former Member
0 Kudos

Hi,

My requirement is to convert amount in words and also in paise.

mainly using spell_amount iam displaying only amount in words but not in paise.

mainly my requirement is to convert words in Thai language and also in Paise (Satang).

any idea on this please help in this case.

Regards,

vamsykrishna.

bangkok.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Check out in this way


DATA : AMT_IN_WORDS(200).

CALL FUNCTION 'HR_IN_CHG_INR_WRDS'
EXPORTING
AMT_IN_NUM = '99999999999'
IMPORTING
AMT_IN_WORDS = AMT_IN_WORDS
EXCEPTIONS
DATA_TYPE_MISMATCH = 1
OTHERS = 2.

WRITE : AMT_IN_WORDS. 

Former Member
0 Kudos

Hi santosh,

amount in words is coming in thai language but i did'nt able to convert decimal amount in thai words.

But my requirement is i want to convert amount in thai language.

regards,

vamsykrishna.

Former Member
0 Kudos

Hello,

Config settingd needs to done for the thai language, please ask the functional desingner to maintain the same in the configuration. after they do the configuration in T015Z the entries are maintained. Now after this you can start using the function module Spell_amount.

former_member196280
Active Contributor
0 Kudos

If you are working on cheque printing program, make sure you tick the check box recepient language while maintaining the variant.

rgds,

SaiRam