SAP HR_FBN_PAY_PREPARE_DATA Function Module for Preparing flexible benefit plan data before generation
HR_FBN_PAY_PREPARE_DATA is a standard hr fbn pay prepare data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Preparing flexible benefit plan data before generation 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 fbn pay prepare data FM, simply by entering the name HR_FBN_PAY_PREPARE_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRFBN00PAYROLL
Program Name: SAPLHRFBN00PAYROLL
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_FBN_PAY_PREPARE_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_FBN_PAY_PREPARE_DATA'"Preparing flexible benefit plan data before generation.
EXPORTING
PERNR = "Personnel Number
APER = "structure of table APER in payroll
REACTION = "Messages, message type
IMPORTING
SUBRC = "Return Value, Return Value After ABAP Statements
TABLES
V0 = "Variable Assignment
PENS = "Pension Funds (GB)
WPBP = "Payroll Results: Work Center/Basic Pay
FBN_PLAN = "Flexible benefit plan details for payroll
ERROR_TABLE = "Benefit structure for error table
EXCEPTIONS
NO_DATA_FOUND = 1 OTHERS = 2
IMPORTING Parameters details for HR_FBN_PAY_PREPARE_DATA
PERNR - Personnel Number
Data type: PERNR-PERNROptional: No
Call by Reference: Yes
APER - structure of table APER in payroll
Data type: PC2APEROptional: No
Call by Reference: Yes
REACTION - Messages, message type
Data type: SY-MSGTYOptional: No
Call by Reference: Yes
EXPORTING Parameters details for HR_FBN_PAY_PREPARE_DATA
SUBRC - Return Value, Return Value After ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
TABLES Parameters details for HR_FBN_PAY_PREPARE_DATA
V0 - Variable Assignment
Data type: PC20COptional: No
Call by Reference: No ( called with pass by value option)
PENS - Pension Funds (GB)
Data type: PC22POptional: No
Call by Reference: Yes
WPBP - Payroll Results: Work Center/Basic Pay
Data type: PC205Optional: No
Call by Reference: No ( called with pass by value option)
FBN_PLAN - Flexible benefit plan details for payroll
Data type: RPFBNPLANOptional: No
Call by Reference: No ( called with pass by value option)
ERROR_TABLE - Benefit structure for error table
Data type: RPBENERROptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_DATA_FOUND - No data found
Data type:Optional: No
Call by Reference: Yes
OTHERS - Others
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR_FBN_PAY_PREPARE_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: | ||||
| lt_v0 | TYPE STANDARD TABLE OF PC20C, " | |||
| lv_pernr | TYPE PERNR-PERNR, " | |||
| lv_subrc | TYPE SY-SUBRC, " | |||
| lv_no_data_found | TYPE SY, " | |||
| lv_aper | TYPE PC2APER, " | |||
| lt_pens | TYPE STANDARD TABLE OF PC22P, " | |||
| lv_others | TYPE PC22P, " | |||
| lt_wpbp | TYPE STANDARD TABLE OF PC205, " | |||
| lv_reaction | TYPE SY-MSGTY, " | |||
| lt_fbn_plan | TYPE STANDARD TABLE OF RPFBNPLAN, " | |||
| lt_error_table | TYPE STANDARD TABLE OF RPBENERR. " |
|   CALL FUNCTION 'HR_FBN_PAY_PREPARE_DATA' "Preparing flexible benefit plan data before generation |
| EXPORTING | ||
| PERNR | = lv_pernr | |
| APER | = lv_aper | |
| REACTION | = lv_reaction | |
| IMPORTING | ||
| SUBRC | = lv_subrc | |
| TABLES | ||
| V0 | = lt_v0 | |
| PENS | = lt_pens | |
| WPBP | = lt_wpbp | |
| FBN_PLAN | = lt_fbn_plan | |
| ERROR_TABLE | = lt_error_table | |
| EXCEPTIONS | ||
| NO_DATA_FOUND = 1 | ||
| OTHERS = 2 | ||
| . " HR_FBN_PAY_PREPARE_DATA | ||
ABAP code using 7.40 inline data declarations to call FM HR_FBN_PAY_PREPARE_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.| "SELECT single PERNR FROM PERNR INTO @DATA(ld_pernr). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_subrc). | ||||
| "SELECT single MSGTY FROM SY INTO @DATA(ld_reaction). | ||||
Search for further information about these or an SAP related objects