Convert Amount in word
Some time requirments to convert amount in word here example to converting amount in word DATA : amount TYPE p DECIMALS 2 , amt_in_words ( 255 ) TYPE c , lv_text1 TYPE string , lv_text2 TYPE string . amount = gs_finalt - amount . CALL FUNCTION 'HR_IN_CHG_INR_WRDS' EXPORTING amt_in_num = amount IMPORTING amt_in_words = amt_in_words EXCEPTIONS data_type_mismatch = 1 OTHERS...