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

ABAP - Convert Month To Words Using 'CONVERSION_EXIT_LDATE_OUTPUT'

REPORT ZMONTH.

DATA X_MONTH(11).

parameters:p_date type sy-datum.


CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'
EXPORTING
INPUT = p_date
IMPORTING
OUTPUT = X_MONTH.

WRITE:/ 'Month ', X_MONTH+3(8).

No comments:

Post a Comment