2008 Mar 05 11:19 AM
Hi friends..
plz tell me the name of the function-module which is used to convert Curency value to text value.
Example. 1295.00----> one thousand, two hundred and ninetyfive rupees.
thanks and regards
Hi friends..
plz tell me the name of the function-module which is used to convert Curency value to text value.
Example. 1295.00----> one thousand, two hundred and ninetyfive rupees.
thanks and regards
2008 Mar 05 11:22 AM
2008 Mar 05 11:23 AM
2008 Mar 05 11:23 AM
1. SPELL_AMOUNT
2.HR_IN_CHG_INR_WRDS for rupee conversion
plz reward if useful
VIVEK
2008 Mar 05 11:24 AM
2008 Mar 05 11:24 AM
hi,
BAPI_CURRENCY_CONV_TO_EXTERNAL Converts currency format to external format
BAPI_CURRENCY_CONV_TO_INTERNAL Converts currency format to internal format
CONVERSION_EXIT_ALPHA_INPUT Converts number to a string filled with zeroes
CONVERSION_EXIT_ALPHA_OUTPUT Converts number with zeroes into an integer
Hope this helps, Do reward.
2008 Mar 05 11:25 AM
Hi,
Us efunction module
CALL FUNCTION 'SPELL_AMOUNT'
EXPORTING
language = l_zspra
currency = l_waers
amount = l_rwbtr
IMPORTING
in_words = l_spell
EXCEPTIONS
not_found = 1
too_large = 2.
Regards,
Prashant
2008 Mar 05 11:33 AM
2008 Mar 05 11:37 AM
hi use this fm
DATA words LIKE SPELL.
parameters: p_number type i.
CALL FUNCTION 'SPELL_AMOUNT'
EXPORTING
AMOUNT = p_number
LANGUAGE = SY-LANGU
IMPORTING
IN_WORDS = words
.
WRITE words-word.
reward points if useful,
venkat.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |