SAP HRPBSDEVAVG_P50_SPLITTE Function Module for









HRPBSDEVAVG_P50_SPLITTE is a standard hrpbsdevavg p50 splitte 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 hrpbsdevavg p50 splitte FM, simply by entering the name HRPBSDEVAVG_P50_SPLITTE into the relevant SAP transaction such as SE37 or SE38.

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



Function HRPBSDEVAVG_P50_SPLITTE 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 'HRPBSDEVAVG_P50_SPLITTE'"
EXPORTING
ID_BEGDA = "
ID_ENDDA = "
IT_KEZ_KEEZ = "
IT_KPZ = "
IT_PZ = "
IT_FSPERIODS = "
IT_EHEZEITEN = "
I_PERNR = "
I_MSG_HANDLER = "

IMPORTING
ET_RESULT_P0789 = "
E_IS_OK = "
.



IMPORTING Parameters details for HRPBSDEVAVG_P50_SPLITTE

ID_BEGDA -

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

ID_ENDDA -

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

IT_KEZ_KEEZ -

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

IT_KPZ -

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

IT_PZ -

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

IT_FSPERIODS -

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

IT_EHEZEITEN -

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

I_PERNR -

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

I_MSG_HANDLER -

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

EXPORTING Parameters details for HRPBSDEVAVG_P50_SPLITTE

ET_RESULT_P0789 -

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

E_IS_OK -

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

Copy and paste ABAP code example for HRPBSDEVAVG_P50_SPLITTE 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_id_begda  TYPE BEGDA, "   
lv_et_result_p0789  TYPE P0789_TAB, "   
lv_e_is_ok  TYPE BOOLE_D, "   
lv_id_endda  TYPE ENDDA, "   
lv_it_kez_keez  TYPE P0789_TAB, "   
lv_it_kpz  TYPE P0789_TAB, "   
lv_it_pz  TYPE P0789_TAB, "   
lv_it_fsperiods  TYPE HRDEPBSVASENT_FSPERIOD, "   
lv_it_ehezeiten  TYPE P0784_TAB, "   
lv_i_pernr  TYPE PERNR_D, "   
lv_i_msg_handler  TYPE IF_HRPBS00_MESSAGE_HANDLER. "   

  CALL FUNCTION 'HRPBSDEVAVG_P50_SPLITTE'  "
    EXPORTING
         ID_BEGDA = lv_id_begda
         ID_ENDDA = lv_id_endda
         IT_KEZ_KEEZ = lv_it_kez_keez
         IT_KPZ = lv_it_kpz
         IT_PZ = lv_it_pz
         IT_FSPERIODS = lv_it_fsperiods
         IT_EHEZEITEN = lv_it_ehezeiten
         I_PERNR = lv_i_pernr
         I_MSG_HANDLER = lv_i_msg_handler
    IMPORTING
         ET_RESULT_P0789 = lv_et_result_p0789
         E_IS_OK = lv_e_is_ok
. " HRPBSDEVAVG_P50_SPLITTE




ABAP code using 7.40 inline data declarations to call FM HRPBSDEVAVG_P50_SPLITTE

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!