SAP HR_PSF_BHE_PAY_READ_DATA Function Module for
HR_PSF_BHE_PAY_READ_DATA is a standard hr psf bhe pay read data 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 hr psf bhe pay read data FM, simply by entering the name HR_PSF_BHE_PAY_READ_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRFPBSBHE
Program Name: SAPLHRFPBSBHE
Main Program: SAPLHRFPBSBHE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_PSF_BHE_PAY_READ_DATA 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_PSF_BHE_PAY_READ_DATA'".
EXPORTING
IM_PERNR = "
IM_BEGDA = "
IM_ENDDA = "
* IM_P0001 = "
* IM_P0006 = "
* IM_P0032 = "
IMPORTING
EX_WA_BHE_DATA = "
EX_P0001 = "
EX_P0006 = "
EX_P0032 = "
EX_RETURNCODE = "
CHANGING
CH_TAB_ERROR = "
IMPORTING Parameters details for HR_PSF_BHE_PAY_READ_DATA
IM_PERNR -
Data type: PERSNOOptional: No
Call by Reference: Yes
IM_BEGDA -
Data type: BEGDAOptional: No
Call by Reference: Yes
IM_ENDDA -
Data type: ENDDAOptional: No
Call by Reference: Yes
IM_P0001 -
Data type: P0001_TABOptional: Yes
Call by Reference: Yes
IM_P0006 -
Data type: P0006_TABOptional: Yes
Call by Reference: Yes
IM_P0032 -
Data type: P0032_TABOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HR_PSF_BHE_PAY_READ_DATA
EX_WA_BHE_DATA -
Data type: PFRPA_BHEOptional: No
Call by Reference: Yes
EX_P0001 -
Data type: P0001_TABOptional: No
Call by Reference: Yes
EX_P0006 -
Data type: P0006_TABOptional: No
Call by Reference: Yes
EX_P0032 -
Data type: P0032_TABOptional: No
Call by Reference: Yes
EX_RETURNCODE -
Data type: SYSUBRCOptional: No
Call by Reference: Yes
CHANGING Parameters details for HR_PSF_BHE_PAY_READ_DATA
CH_TAB_ERROR -
Data type: P99SF_TAB_ERROROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_PSF_BHE_PAY_READ_DATA 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_im_pernr | TYPE PERSNO, " | |||
| lv_ch_tab_error | TYPE P99SF_TAB_ERROR, " | |||
| lv_ex_wa_bhe_data | TYPE PFRPA_BHE, " | |||
| lv_ex_p0001 | TYPE P0001_TAB, " | |||
| lv_im_begda | TYPE BEGDA, " | |||
| lv_ex_p0006 | TYPE P0006_TAB, " | |||
| lv_im_endda | TYPE ENDDA, " | |||
| lv_ex_p0032 | TYPE P0032_TAB, " | |||
| lv_im_p0001 | TYPE P0001_TAB, " | |||
| lv_im_p0006 | TYPE P0006_TAB, " | |||
| lv_ex_returncode | TYPE SYSUBRC, " | |||
| lv_im_p0032 | TYPE P0032_TAB. " |
|   CALL FUNCTION 'HR_PSF_BHE_PAY_READ_DATA' " |
| EXPORTING | ||
| IM_PERNR | = lv_im_pernr | |
| IM_BEGDA | = lv_im_begda | |
| IM_ENDDA | = lv_im_endda | |
| IM_P0001 | = lv_im_p0001 | |
| IM_P0006 | = lv_im_p0006 | |
| IM_P0032 | = lv_im_p0032 | |
| IMPORTING | ||
| EX_WA_BHE_DATA | = lv_ex_wa_bhe_data | |
| EX_P0001 | = lv_ex_p0001 | |
| EX_P0006 | = lv_ex_p0006 | |
| EX_P0032 | = lv_ex_p0032 | |
| EX_RETURNCODE | = lv_ex_returncode | |
| CHANGING | ||
| CH_TAB_ERROR | = lv_ch_tab_error | |
| . " HR_PSF_BHE_PAY_READ_DATA | ||
ABAP code using 7.40 inline data declarations to call FM HR_PSF_BHE_PAY_READ_DATA
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