SAP Function Modules

DATE_CREATE_2 SAP Function module







DATE_CREATE_2 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name DATE_CREATE_2 into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: FV02
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM DATE_CREATE_2 - DATE CREATE 2





CALL FUNCTION 'DATE_CREATE_2' "
  EXPORTING
    i_datum_ein =               " vtbbewe-dbervon
*   i_kz_incl_aus = '0'         "
*   i_kz_incl_ein = '0'         "
*   i_kz_ult_aus = 'X'          "
*   i_kz_ult_ein = 'X'          "
*   i_stgmeth = '0'             "
*   i_szbmeth = '1'             "
*   i_tage = 0                  "
  IMPORTING
    e_datum_aus =               " vtbbewe-dberbis
    e_kz_incl =                 "
    e_kz_ult =                  "
  EXCEPTIONS
    DAYS_METHOD_NOT_DEFINED = 1  "
    .  "  DATE_CREATE_2

ABAP code example for Function Module DATE_CREATE_2





The ABAP code below is a full code listing to execute function module DATE_CREATE_2 including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).

DATA:
ld_e_datum_aus  TYPE VTBBEWE-DBERBIS ,
ld_e_kz_incl  TYPE STRING ,
ld_e_kz_ult  TYPE STRING .


DATA(ld_i_datum_ein) = 20210129
DATA(ld_i_kz_incl_aus) = 'some text here'.
DATA(ld_i_kz_incl_ein) = 'some text here'.
DATA(ld_i_kz_ult_aus) = 'some text here'.
DATA(ld_i_kz_ult_ein) = 'some text here'.
DATA(ld_i_stgmeth) = 'some text here'.
DATA(ld_i_szbmeth) = 'some text here'.
DATA(ld_i_tage) = 'some text here'. . CALL FUNCTION 'DATE_CREATE_2' EXPORTING i_datum_ein = ld_i_datum_ein * i_kz_incl_aus = ld_i_kz_incl_aus * i_kz_incl_ein = ld_i_kz_incl_ein * i_kz_ult_aus = ld_i_kz_ult_aus * i_kz_ult_ein = ld_i_kz_ult_ein * i_stgmeth = ld_i_stgmeth * i_szbmeth = ld_i_szbmeth * i_tage = ld_i_tage IMPORTING e_datum_aus = ld_e_datum_aus e_kz_incl = ld_e_kz_incl e_kz_ult = ld_e_kz_ult EXCEPTIONS DAYS_METHOD_NOT_DEFINED = 1 . " DATE_CREATE_2
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_e_datum_aus  TYPE VTBBEWE-DBERBIS ,
ld_i_datum_ein  TYPE VTBBEWE-DBERVON ,
ld_e_kz_incl  TYPE STRING ,
ld_i_kz_incl_aus  TYPE STRING ,
ld_e_kz_ult  TYPE STRING ,
ld_i_kz_incl_ein  TYPE STRING ,
ld_i_kz_ult_aus  TYPE STRING ,
ld_i_kz_ult_ein  TYPE STRING ,
ld_i_stgmeth  TYPE STRING ,
ld_i_szbmeth  TYPE STRING ,
ld_i_tage  TYPE STRING .


ld_i_datum_ein = 20210129
ld_i_kz_incl_aus = 'some text here'.
ld_i_kz_incl_ein = 'some text here'.
ld_i_kz_ult_aus = 'some text here'.
ld_i_kz_ult_ein = 'some text here'.
ld_i_stgmeth = 'some text here'.
ld_i_szbmeth = 'some text here'.
ld_i_tage = 'some text here'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DATE_CREATE_2 or its description.