SAP Function Modules

BAPI_PTIMEOVERVIEW_REPLICATE SAP Function module - Trigger Distribution of Employee Time Overviews







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

Associated Function Group: HRTIM00BUS7013
Released Date: 03.07.1998
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM BAPI_PTIMEOVERVIEW_REPLICATE - BAPI PTIMEOVERVIEW REPLICATE





CALL FUNCTION 'BAPI_PTIMEOVERVIEW_REPLICATE' "Trigger Distribution of Employee Time Overviews
  EXPORTING
    fromdate =                  " bapi7013_3-from_date  Start Date
    todate =                    " bapi7013_3-to_date  End Date
    extapplication =            " bapi7013_3-extapplication  External Application
*   deleteolddata = SPACE       " bapi7013_3-deleteolddata  Deletion of Old Data Requested
  TABLES
    employees =                 " bapi7013_4    List of Personnel Numbers
    timetypes =                 " bapi7013_5    List of Time Types
    erroremployees =            " bapi7013_4    Incorrect Personnel Numbers
*   receivers =                 " bdi_logsys    Explicitly Specified Receiver Systems
*   return =                    " bapiret2      Error Messages
    .  "  BAPI_PTIMEOVERVIEW_REPLICATE

ABAP code example for Function Module BAPI_PTIMEOVERVIEW_REPLICATE





The ABAP code below is a full code listing to execute function module BAPI_PTIMEOVERVIEW_REPLICATE 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_employees  TYPE STANDARD TABLE OF BAPI7013_4,"TABLES PARAM
wa_employees  LIKE LINE OF it_employees ,
it_timetypes  TYPE STANDARD TABLE OF BAPI7013_5,"TABLES PARAM
wa_timetypes  LIKE LINE OF it_timetypes ,
it_erroremployees  TYPE STANDARD TABLE OF BAPI7013_4,"TABLES PARAM
wa_erroremployees  LIKE LINE OF it_erroremployees ,
it_receivers  TYPE STANDARD TABLE OF BDI_LOGSYS,"TABLES PARAM
wa_receivers  LIKE LINE OF it_receivers ,
it_return  TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM
wa_return  LIKE LINE OF it_return .


DATA(ld_fromdate) = 20210129

DATA(ld_todate) = 20210129

DATA(ld_extapplication) = some text here

DATA(ld_deleteolddata) = some text here

"populate fields of struture and append to itab
append wa_employees to it_employees.

"populate fields of struture and append to itab
append wa_timetypes to it_timetypes.

"populate fields of struture and append to itab
append wa_erroremployees to it_erroremployees.

"populate fields of struture and append to itab
append wa_receivers to it_receivers.

"populate fields of struture and append to itab
append wa_return to it_return. . CALL FUNCTION 'BAPI_PTIMEOVERVIEW_REPLICATE' EXPORTING fromdate = ld_fromdate todate = ld_todate extapplication = ld_extapplication * deleteolddata = ld_deleteolddata TABLES employees = it_employees timetypes = it_timetypes erroremployees = it_erroremployees * receivers = it_receivers * return = it_return . " BAPI_PTIMEOVERVIEW_REPLICATE
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_fromdate  TYPE BAPI7013_3-FROM_DATE ,
it_employees  TYPE STANDARD TABLE OF BAPI7013_4 ,
wa_employees  LIKE LINE OF it_employees,
ld_todate  TYPE BAPI7013_3-TO_DATE ,
it_timetypes  TYPE STANDARD TABLE OF BAPI7013_5 ,
wa_timetypes  LIKE LINE OF it_timetypes,
ld_extapplication  TYPE BAPI7013_3-EXTAPPLICATION ,
it_erroremployees  TYPE STANDARD TABLE OF BAPI7013_4 ,
wa_erroremployees  LIKE LINE OF it_erroremployees,
ld_deleteolddata  TYPE BAPI7013_3-DELETEOLDDATA ,
it_receivers  TYPE STANDARD TABLE OF BDI_LOGSYS ,
wa_receivers  LIKE LINE OF it_receivers,
it_return  TYPE STANDARD TABLE OF BAPIRET2 ,
wa_return  LIKE LINE OF it_return.


ld_fromdate = 20210129

"populate fields of struture and append to itab
append wa_employees to it_employees.

ld_todate = 20210129

"populate fields of struture and append to itab
append wa_timetypes to it_timetypes.

ld_extapplication = some text here

"populate fields of struture and append to itab
append wa_erroremployees to it_erroremployees.

ld_deleteolddata = some text here

"populate fields of struture and append to itab
append wa_receivers to it_receivers.

"populate fields of struture and append to itab
append wa_return to it_return.

SAP Documentation for FM BAPI_PTIMEOVERVIEW_REPLICATE


This method starts the process for creating employee time data overviews. ...See here for full SAP fm documentation

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