data: d_return like sy-subrc,
      ay_itab like T247 occurs 0 with header line.

CALL FUNCTION 'MONTH_NAMES_GET'
 EXPORTING
   LANGUAGE                    = SY-LANGU
 IMPORTING
   RETURN_CODE                 = d_return
  TABLES
    MONTH_NAMES                = ay_itab
 EXCEPTIONS
   MONTH_NAMES_NOT_FOUND       = 1
   OTHERS                      = 2
          .
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

Loop at ay_itab.

Write:/ ay_itab-LTX.

endloop.

Serkan AKKAVAK
Bilgisayar Mühendisi
serkurumsal@yandex.com

SAP ve ABAP ile ilgili tüm sorularınızı sorabilirsiniz.