SAP HR_FBN_COST_SUMMARY_SELECTION Function Module for Cost summary popup window
HR_FBN_COST_SUMMARY_SELECTION is a standard hr fbn cost summary selection SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Cost summary popup window 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 cost summary selection FM, simply by entering the name HR_FBN_COST_SUMMARY_SELECTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRFBN00SUBSCREENS
Program Name: SAPLHRFBN00SUBSCREENS
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR_FBN_COST_SUMMARY_SELECTION 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_COST_SUMMARY_SELECTION'"Cost summary popup window.
EXPORTING
PERNR = "
ENAME = "
CALCULATION_DATE = "
DATUM = "Addtional date for company car
REACTION = "
IMPORTING
SUBRC = "
TABLES
* CREDIT_SELECTION = "
* HEALTH_SELECTION = "
* INSURE_SELECTION = "
* MISCEL_SELECTION = "
ERROR_TABLE = "
IMPORTING Parameters details for HR_FBN_COST_SUMMARY_SELECTION
PERNR -
Data type: PERNR_DOptional: No
Call by Reference: No ( called with pass by value option)
ENAME -
Data type: P0001-ENAMEOptional: No
Call by Reference: No ( called with pass by value option)
CALCULATION_DATE -
Data type: SYDATUMOptional: No
Call by Reference: No ( called with pass by value option)
DATUM - Addtional date for company car
Data type: SYDATUMOptional: No
Call by Reference: No ( called with pass by value option)
REACTION -
Data type: SYMSGTYOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for HR_FBN_COST_SUMMARY_SELECTION
SUBRC -
Data type: SYSUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HR_FBN_COST_SUMMARY_SELECTION
CREDIT_SELECTION -
Data type: RPBEN_S1Optional: Yes
Call by Reference: No ( called with pass by value option)
HEALTH_SELECTION -
Data type: RPBEN_SAOptional: Yes
Call by Reference: No ( called with pass by value option)
INSURE_SELECTION -
Data type: RPBEN_SBOptional: Yes
Call by Reference: No ( called with pass by value option)
MISCEL_SELECTION -
Data type: RPBEN_SEOptional: Yes
Call by Reference: No ( called with pass by value option)
ERROR_TABLE -
Data type: RPBENERROptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HR_FBN_COST_SUMMARY_SELECTION 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_pernr | TYPE PERNR_D, " | |||
| lv_subrc | TYPE SYSUBRC, " | |||
| lt_credit_selection | TYPE STANDARD TABLE OF RPBEN_S1, " | |||
| lv_ename | TYPE P0001-ENAME, " | |||
| lt_health_selection | TYPE STANDARD TABLE OF RPBEN_SA, " | |||
| lv_calculation_date | TYPE SYDATUM, " | |||
| lt_insure_selection | TYPE STANDARD TABLE OF RPBEN_SB, " | |||
| lv_datum | TYPE SYDATUM, " | |||
| lt_miscel_selection | TYPE STANDARD TABLE OF RPBEN_SE, " | |||
| lv_reaction | TYPE SYMSGTY, " | |||
| lt_error_table | TYPE STANDARD TABLE OF RPBENERR. " |
|   CALL FUNCTION 'HR_FBN_COST_SUMMARY_SELECTION' "Cost summary popup window |
| EXPORTING | ||
| PERNR | = lv_pernr | |
| ENAME | = lv_ename | |
| CALCULATION_DATE | = lv_calculation_date | |
| DATUM | = lv_datum | |
| REACTION | = lv_reaction | |
| IMPORTING | ||
| SUBRC | = lv_subrc | |
| TABLES | ||
| CREDIT_SELECTION | = lt_credit_selection | |
| HEALTH_SELECTION | = lt_health_selection | |
| INSURE_SELECTION | = lt_insure_selection | |
| MISCEL_SELECTION | = lt_miscel_selection | |
| ERROR_TABLE | = lt_error_table | |
| . " HR_FBN_COST_SUMMARY_SELECTION | ||
ABAP code using 7.40 inline data declarations to call FM HR_FBN_COST_SUMMARY_SELECTION
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 ENAME FROM P0001 INTO @DATA(ld_ename). | ||||
Search for further information about these or an SAP related objects