Esta función según el idioma trae los meses en distintos formatos (números, texto corto y largo) importándolos en una tabla.
Ejemplo:
DATA: lt_t247 TYPE TABLE OF t247.
  CALL FUNCTION 'MONTH_NAMES_GET'
    EXPORTING
      language                                = 'S' 
    TABLES
      month_names                        = lt_t247
    EXCEPTIONS
      month_names_not_found       = 1
      OTHERS                              = 2.
 
 
No hay comentarios:
Publicar un comentario