SAP HR_VERSORGUNG_PRUEFEN_HB Function Module for HR-PSG: Check RA accounting - surviving dependents against pension holder
HR_VERSORGUNG_PRUEFEN_HB is a standard hr versorgung pruefen hb SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for HR-PSG: Check RA accounting - surviving dependents against pension holder 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 versorgung pruefen hb FM, simply by entering the name HR_VERSORGUNG_PRUEFEN_HB into the relevant SAP transaction such as SE37 or SE38.
Function Group: HROV
Program Name: SAPLHROV
Main Program:
Appliation area: P
Release date: 27-Apr-1997
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_VERSORGUNG_PRUEFEN_HB 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_VERSORGUNG_PRUEFEN_HB'"HR-PSG: Check RA accounting - surviving dependents against pension holder.
EXPORTING
P_PERNR = "-> Personnel Number
P_RRDATUM_IST = "-> RRDAT Surviving Dependent ACTUAL
IMPORTING
P_RRDATUM_SOLL = "<- RRDAT Surviving Dependent TARGET
TABLES
P_P0322 = "-> Infotype 0322 Surviving Dependent
EXCEPTIONS
KEINE_VERSORGUNG = 1
IMPORTING Parameters details for HR_VERSORGUNG_PRUEFEN_HB
P_PERNR - -> Personnel Number
Data type: P0003-PERNROptional: No
Call by Reference: No ( called with pass by value option)
P_RRDATUM_IST - -> RRDAT Surviving Dependent ACTUAL
Data type: P0003-RRDATOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for HR_VERSORGUNG_PRUEFEN_HB
P_RRDATUM_SOLL - <- RRDAT Surviving Dependent TARGET
Data type: P0003-RRDATOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HR_VERSORGUNG_PRUEFEN_HB
P_P0322 - -> Infotype 0322 Surviving Dependent
Data type: P0322Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
KEINE_VERSORGUNG - Infotype 0322 does not exist for p_rrdatum_ist
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HR_VERSORGUNG_PRUEFEN_HB 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: | ||||
| lt_p_p0322 | TYPE STANDARD TABLE OF P0322, " | |||
| lv_p_pernr | TYPE P0003-PERNR, " | |||
| lv_p_rrdatum_soll | TYPE P0003-RRDAT, " | |||
| lv_keine_versorgung | TYPE P0003, " | |||
| lv_p_rrdatum_ist | TYPE P0003-RRDAT. " |
|   CALL FUNCTION 'HR_VERSORGUNG_PRUEFEN_HB' "HR-PSG: Check RA accounting - surviving dependents against pension holder |
| EXPORTING | ||
| P_PERNR | = lv_p_pernr | |
| P_RRDATUM_IST | = lv_p_rrdatum_ist | |
| IMPORTING | ||
| P_RRDATUM_SOLL | = lv_p_rrdatum_soll | |
| TABLES | ||
| P_P0322 | = lt_p_p0322 | |
| EXCEPTIONS | ||
| KEINE_VERSORGUNG = 1 | ||
| . " HR_VERSORGUNG_PRUEFEN_HB | ||
ABAP code using 7.40 inline data declarations to call FM HR_VERSORGUNG_PRUEFEN_HB
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 PERNR FROM P0003 INTO @DATA(ld_p_pernr). | ||||
| "SELECT single RRDAT FROM P0003 INTO @DATA(ld_p_rrdatum_soll). | ||||
| "SELECT single RRDAT FROM P0003 INTO @DATA(ld_p_rrdatum_ist). | ||||
Search for further information about these or an SAP related objects