SAP HRMS_BIW_TIME_UPDATE Function Module for
HRMS_BIW_TIME_UPDATE is a standard hrms biw time update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for hrms biw time update FM, simply by entering the name HRMS_BIW_TIME_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRMS_BIW_PTDW
Program Name: SAPLHRMS_BIW_PTDW
Main Program: SAPLHRMS_BIW_PTDW
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRMS_BIW_TIME_UPDATE pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'HRMS_BIW_TIME_UPDATE'".
EXPORTING
PTDW_DB_NAM = "
TABLES
I_X0439_UPDATE = "
I_T_PTDW_DELTA = "
I_X0439_INSERT = "
I_DB_INSERT = "
I_DB_UPDATE = "
I_DB_DELETE = "
I_WPBP_DB_INSERT = "
I_COST_DB_INSERT = "
I_ACTR_DB_INSERT = "
I_ACTS_DB_INSERT = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLHRMS_BIW_PTDW_001 Customer Exit for Time Data Extractor - Hours According to Personal WS
EXIT_SAPLHRMS_BIW_PTDW_002 Customer Exit for Time Data Extractor: Time and Labor (Employee Times)
EXIT_SAPLHRMS_BIW_PTDW_003 Customer Exit for Time Data Extractor: Quota Transaction Data
IMPORTING Parameters details for HRMS_BIW_TIME_UPDATE
PTDW_DB_NAM -
Data type: DNTAB-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HRMS_BIW_TIME_UPDATE
I_X0439_UPDATE -
Data type: PA0439Optional: No
Call by Reference: No ( called with pass by value option)
I_T_PTDW_DELTA -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_X0439_INSERT -
Data type: PA0439Optional: No
Call by Reference: No ( called with pass by value option)
I_DB_INSERT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_DB_UPDATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_DB_DELETE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_WPBP_DB_INSERT -
Data type: PTDW_WPBP_DBOptional: No
Call by Reference: No ( called with pass by value option)
I_COST_DB_INSERT -
Data type: PTDW_COST_DBOptional: No
Call by Reference: No ( called with pass by value option)
I_ACTR_DB_INSERT -
Data type: PTDW_ACTR_DBOptional: No
Call by Reference: No ( called with pass by value option)
I_ACTS_DB_INSERT -
Data type: PTDW_ACTS_DBOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HRMS_BIW_TIME_UPDATE Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_ptdw_db_nam | TYPE DNTAB-TABNAME, " | |||
| lt_i_x0439_update | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_t_ptdw_delta | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_x0439_insert | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_db_insert | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_db_update | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_db_delete | TYPE STANDARD TABLE OF PA0439, " | |||
| lt_i_wpbp_db_insert | TYPE STANDARD TABLE OF PTDW_WPBP_DB, " | |||
| lt_i_cost_db_insert | TYPE STANDARD TABLE OF PTDW_COST_DB, " | |||
| lt_i_actr_db_insert | TYPE STANDARD TABLE OF PTDW_ACTR_DB, " | |||
| lt_i_acts_db_insert | TYPE STANDARD TABLE OF PTDW_ACTS_DB. " |
|   CALL FUNCTION 'HRMS_BIW_TIME_UPDATE' " |
| EXPORTING | ||
| PTDW_DB_NAM | = lv_ptdw_db_nam | |
| TABLES | ||
| I_X0439_UPDATE | = lt_i_x0439_update | |
| I_T_PTDW_DELTA | = lt_i_t_ptdw_delta | |
| I_X0439_INSERT | = lt_i_x0439_insert | |
| I_DB_INSERT | = lt_i_db_insert | |
| I_DB_UPDATE | = lt_i_db_update | |
| I_DB_DELETE | = lt_i_db_delete | |
| I_WPBP_DB_INSERT | = lt_i_wpbp_db_insert | |
| I_COST_DB_INSERT | = lt_i_cost_db_insert | |
| I_ACTR_DB_INSERT | = lt_i_actr_db_insert | |
| I_ACTS_DB_INSERT | = lt_i_acts_db_insert | |
| . " HRMS_BIW_TIME_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM HRMS_BIW_TIME_UPDATE
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single TABNAME FROM DNTAB INTO @DATA(ld_ptdw_db_nam). | ||||
Search for further information about these or an SAP related objects