Google Search - Blog...........

ABAP - Convert Any Number Into Words Using 'SPELL_AMOUNT'

report ztest .

parameters: v_int TYPE i .

DATA words LIKE SPELL.

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

No comments:

Post a Comment