*-----------------------------------------------------------*
* report
*-----------------------------------------------------------*
report zdate.
*-----------------------------------------------------------*
* data declarations
*-----------------------------------------------------------*
DATA ldate(20).
*-----------------------------------------------------------*
* start-of-selection
*-----------------------------------------------------------*
start-of-selection .
CALL FUNCTION 'CONVERSION_EXIT_LDATE_OUTPUT'
EXPORTING
input = sy-datum
IMPORTING
OUTPUT = ldate.
*-----output
write:/ 'name of the month is: ' , ldate.