SAP Function Modules

Share |

CONVERT_DATE_TO_EXTERNAL SAP Function module - Conversion: Internal to external date (like screen conversion)

Pattern for FM CONVERT_DATE_TO_EXTERNAL - CONVERT DATE TO EXTERNAL
Associated Function Group: SCA1
Released Date: 23.09.1996
CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL' "Conversion: Internal to external date (like screen conversion)
* EXPORTING
*   date_internal = SY-DATUM    " sy-datum      internal date formatting
  IMPORTING
    date_external =             "               external date formatting
  EXCEPTIONS
    DATE_INTERNAL_IS_INVALID = 1  "             the internal date is invalid
    .  "  CONVERT_DATE_TO_EXTERNAL






Share |