SAP HR_ECM_HANDLE_GDL_APPLICATION Function Module for Update process by defaults from guideline









HR_ECM_HANDLE_GDL_APPLICATION is a standard hr ecm handle gdl application SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update process by defaults from guideline processing and below is the pattern details for this FM, 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 hr ecm handle gdl application FM, simply by entering the name HR_ECM_HANDLE_GDL_APPLICATION into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRECM00GUIDELINE
Program Name: SAPLHRECM00GUIDELINE
Main Program: SAPLHRECM00GUIDELINE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HR_ECM_HANDLE_GDL_APPLICATION 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 'HR_ECM_HANDLE_GDL_APPLICATION'"Update process by defaults from guideline
EXPORTING
PERNR_SELECTED_TAB = "Table of Selected Persons in Compensation Scenario
CPLAN = "Compensation Plan
CCATG = "Compensation Category
GUIDELINE_TAB = "Table of guideline information (sorted)
PROC_ADMIN_TAB = "Table of administration data for compensation processes
PROC_PLANNED_TAB = "Single-character flag
MESSAGE_HANDLER = "HR Master Data: Messages

IMPORTING
IS_OK = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')

CHANGING
COMP_UPDATE_TAB = "Compensation data changed by user
.



IMPORTING Parameters details for HR_ECM_HANDLE_GDL_APPLICATION

PERNR_SELECTED_TAB - Table of Selected Persons in Compensation Scenario

Data type: HRECM00PERNR_SELECTED_TAB
Optional: No
Call by Reference: Yes

CPLAN - Compensation Plan

Data type: ECM_CPLAN
Optional: No
Call by Reference: Yes

CCATG - Compensation Category

Data type: ECM_CCATG
Optional: No
Call by Reference: Yes

GUIDELINE_TAB - Table of guideline information (sorted)

Data type: HRECM00GUIDELINE_TAB
Optional: No
Call by Reference: Yes

PROC_ADMIN_TAB - Table of administration data for compensation processes

Data type: HRECM00PROC_ADMIN_TAB
Optional: No
Call by Reference: Yes

PROC_PLANNED_TAB - Single-character flag

Data type: HRECM00PROC_INFO_TAB
Optional: No
Call by Reference: Yes

MESSAGE_HANDLER - HR Master Data: Messages

Data type: IF_HRPA_MESSAGE_HANDLER
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for HR_ECM_HANDLE_GDL_APPLICATION

IS_OK - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')

Data type: BOOLE_D
Optional: No
Call by Reference: Yes

CHANGING Parameters details for HR_ECM_HANDLE_GDL_APPLICATION

COMP_UPDATE_TAB - Compensation data changed by user

Data type: HRECM00COMP_UPDATE_TAB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HR_ECM_HANDLE_GDL_APPLICATION 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_is_ok  TYPE BOOLE_D, "   
lv_comp_update_tab  TYPE HRECM00COMP_UPDATE_TAB, "   
lv_pernr_selected_tab  TYPE HRECM00PERNR_SELECTED_TAB, "   
lv_cplan  TYPE ECM_CPLAN, "   
lv_ccatg  TYPE ECM_CCATG, "   
lv_guideline_tab  TYPE HRECM00GUIDELINE_TAB, "   
lv_proc_admin_tab  TYPE HRECM00PROC_ADMIN_TAB, "   
lv_proc_planned_tab  TYPE HRECM00PROC_INFO_TAB, "   
lv_message_handler  TYPE IF_HRPA_MESSAGE_HANDLER. "   

  CALL FUNCTION 'HR_ECM_HANDLE_GDL_APPLICATION'  "Update process by defaults from guideline
    EXPORTING
         PERNR_SELECTED_TAB = lv_pernr_selected_tab
         CPLAN = lv_cplan
         CCATG = lv_ccatg
         GUIDELINE_TAB = lv_guideline_tab
         PROC_ADMIN_TAB = lv_proc_admin_tab
         PROC_PLANNED_TAB = lv_proc_planned_tab
         MESSAGE_HANDLER = lv_message_handler
    IMPORTING
         IS_OK = lv_is_ok
    CHANGING
         COMP_UPDATE_TAB = lv_comp_update_tab
. " HR_ECM_HANDLE_GDL_APPLICATION




ABAP code using 7.40 inline data declarations to call FM HR_ECM_HANDLE_GDL_APPLICATION

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.

 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!