Get name of months in ABAP

Nothing tricky here, function module MONTH_NAMES_GET is available for that purpose

 DATA:
  month_names TYPE STANDARD TABLE OF t247.  

 CALL FUNCTION 'MONTH_NAMES_GET'
  TABLES
   month_names = month_names
  EXCEPTIONS
   month_names_not_found = 1
   OTHERS = 2.

 IF sy-subrc <> 0.
  RETURN.
 ENDIF.
SAPDEV.EU
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.