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

ABAP - Convert Date And Month In Words - CONVERSION_EXIT_LDATE_OUTPUT

REPORT ZMONTH.

DATA X_MONTH(11).

parameters:p_date like sy-datum.

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

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

No comments:

Post a Comment