SAP Function Modules

HR_UPDATE_DSAP SAP Function module







HR_UPDATE_DSAP 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 HR_UPDATE_DSAP into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: HRD3
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM HR_UPDATE_DSAP - HR UPDATE DSAP





CALL FUNCTION 'HR_UPDATE_DSAP' "
  EXPORTING
*   i_commit_work = 'X'         " xfeld
    datum =                     " sy-datum
    zeit =                      " sy-uzeit
    repid =                     " sy-repid
    user =                      " sy-uname
    abr_periode =               " pd3dsap-aktap
    abr_jahr =                  " pd3dsap-aktaj
  TABLES
    dsapkey =                   " hrd3key
    .  "  HR_UPDATE_DSAP

ABAP code example for Function Module HR_UPDATE_DSAP





The ABAP code below is a full code listing to execute function module HR_UPDATE_DSAP 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:
it_dsapkey  TYPE STANDARD TABLE OF HRD3KEY,"TABLES PARAM
wa_dsapkey  LIKE LINE OF it_dsapkey .

DATA(ld_i_commit_work) = 'Check type of data required'.
DATA(ld_datum) = '20210129'.
DATA(ld_zeit) = 'Check type of data required'.
DATA(ld_repid) = 'Check type of data required'.
DATA(ld_user) = 'some text here'.

SELECT single AKTAP
FROM PD3DSAP
INTO @DATA(ld_abr_periode).


SELECT single AKTAJ
FROM PD3DSAP
INTO @DATA(ld_abr_jahr).


"populate fields of struture and append to itab
append wa_dsapkey to it_dsapkey. . CALL FUNCTION 'HR_UPDATE_DSAP' EXPORTING * i_commit_work = ld_i_commit_work datum = ld_datum zeit = ld_zeit repid = ld_repid user = ld_user abr_periode = ld_abr_periode abr_jahr = ld_abr_jahr TABLES dsapkey = it_dsapkey . " HR_UPDATE_DSAP
IF SY-SUBRC EQ 0. "All OK 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_i_commit_work  TYPE XFELD ,
it_dsapkey  TYPE STANDARD TABLE OF HRD3KEY ,
wa_dsapkey  LIKE LINE OF it_dsapkey,
ld_datum  TYPE SY-DATUM ,
ld_zeit  TYPE SY-UZEIT ,
ld_repid  TYPE SY-REPID ,
ld_user  TYPE SY-UNAME ,
ld_abr_periode  TYPE PD3DSAP-AKTAP ,
ld_abr_jahr  TYPE PD3DSAP-AKTAJ .

ld_i_commit_work = 'some text here'.

"populate fields of struture and append to itab
append wa_dsapkey to it_dsapkey.
ld_datum = '20210129'.
ld_zeit = 'Check type of data required'.
ld_repid = 'Check type of data required'.
ld_user = 'some text here'.

SELECT single AKTAP
FROM PD3DSAP
INTO ld_abr_periode.


SELECT single AKTAJ
FROM PD3DSAP
INTO ld_abr_jahr.

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 HR_UPDATE_DSAP or its description.