RPLFSA01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPLFSA01 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: PLTYP = Plan Type
Selection Text: BSTAT = Second Program Grouping
Selection Text: BPLAN = Plan Name
Selection Text: BENGR = First program grouping
Selection Text: BAREA = Benefit Area
Title: Flexible Spending Account: List of Account Balances
Text Symbol: T05 = Plan type :
Text Symbol: T04 = Plan :
Text Symbol: T03 = 2nd program grouping:
Text Symbol: T02 = 1st program grouping:
Text Symbol: T01 = Benefit area :
Text Symbol: STT = Key date $1
Text Symbol: H08 = Total balance
Text Symbol: H07 = Claims paid
Text Symbol: H06 = Claims planned
Text Symbol: H05 = Contr. paid
Text Symbol: H04 = Contr. planned
Text Symbol: H03 = Pers.no.
Text Symbol: H02 = Ins. policy no.
Text Symbol: H01 = Name of employee
Text Symbol: F03 = Current balance (YTD)
Text Symbol: F02 = Total annual balance (as planned)
Text Symbol: F01 = Total contributions and claims
INCLUDE: FBEN0D01, " ERROR HANDLING
FBEN0D05, " DEFINITION BOOLEAN
No SAP DATABASE tables are accessed within this REPORT code!
HR_BEN_SHOW_ERROR_POPUP CALL FUNCTION 'HR_BEN_SHOW_ERROR_POPUP' TABLES error_table = error_table.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = pernr-pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0171' msg_par2 = pernr-pernr msg_par3 = pn-begda msg_par4 = pn-endda severity = 8 reaction = no_msg TABLES error_table = error_table.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = pernr-pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0000' msg_par2 = pernr-pernr msg_par3 = pn-begda msg_par4 = pn-endda severity = 8 reaction = no_msg TABLES error_table = error_table.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = pernr-pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0001' msg_par2 = pernr-pernr msg_par3 = pn-begda msg_par4 = pn-endda severity = 8 reaction = no_msg TABLES error_table = error_table.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = pernr-pernr msg_class = 'RP' msg_number = '050' msg_par1 = '0002' msg_par2 = pernr-pernr msg_par3 = pn-begda msg_par4 = pn-endda severity = 8 reaction = no_msg TABLES error_table = error_table.
HR_BEN_HANDLE_ERROR CALL FUNCTION 'HR_BEN_HANDLE_ERROR' EXPORTING pernr = pernr-pernr msg_class = 'HRBEN00LISTREPORTS' msg_number = '003' severity = 4 reaction = no_msg TABLES error_table = error_table.
HR_BEN_READ_EE_BENEFIT_DATA CALL FUNCTION 'HR_BEN_READ_EE_BENEFIT_DATA' EXPORTING pernr = p0170-pernr datum = pn-begda reaction = no_msg IMPORTING ee_benefit_data = ee_benefit_data subrc = subrc TABLES error_table = error_table.
HR_BEN_GET_SPEN_PLYTD_AMOUNTS CALL FUNCTION 'HR_BEN_GET_SPEN_PLYTD_AMOUNTS' EXPORTING pernr = ee_benefit_data-pernr barea = ee_benefit_data-barea bplan = p0170-bplan datum = pn-begda desired_curre = p0170-curre reaction = no_msg IMPORTING contrib_curr_plan_ytd_amt = balance_tab-contr_ytd reimb_curr_plan_ytd_amt = balance_tab-reimb_ytd RESULT = RESULT subrc = subrc TABLES error_table = error_table.
HR_BEN_GET_SPEN_PLYTD_AMTS_CRT CALL FUNCTION 'HR_BEN_GET_SPEN_PLYTD_AMTS_CRT' EXPORTING pernr = ee_benefit_data-pernr barea = ee_benefit_data-barea bplan = p0170-bplan RESULT = RESULT datum = pn-begda desired_curre = p0170-curre reaction = no_msg IMPORTING contrib_curr_plan_ytd_amt = balance_tab-contr_ytd reimb_curr_plan_ytd_amt = balance_tab-reimb_ytd subrc = subrc TABLES error_table = error_table.
HR_BEN_GET_CLAIMS CALL FUNCTION 'HR_BEN_GET_CLAIMS' EXPORTING pernr = ee_benefit_data-pernr barea = ee_benefit_data-barea bplan = p0170-bplan date = pn-begda out_curre = p0170-curre period_check = period_check "Note 917354 reaction = no_msg IMPORTING amount = balance_tab-reimb_pl remgra = grace_amount "Note 917354 subrc = subrc TABLES error_table = error_table.
HR_BEN_GET_CLAIMS CALL FUNCTION 'HR_BEN_GET_CLAIMS' EXPORTING pernr = ee_benefit_data-pernr barea = ee_benefit_data-barea bplan = p0170-bplan date = pn-begda out_curre = p0170-curre period_check = period_check "Note 917354 reaction = no_msg IMPORTING addgra = grace_amount "Note 917354 subrc = subrc TABLES error_table = error_table.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = sy-repid i_callback_pf_status_set = gc_pf_status is_layout = ls_layout it_fieldcat = lt_fieldcat it_sort = lt_sort i_save = gc_save it_events = lt_events is_print = ls_print TABLES t_outtab = gt_balance_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = sy-repid i_structure_name = lc_structure i_inclname = sy-repid CHANGING ct_fieldcat = ct_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = ct_events EXCEPTIONS list_type_wrong = 1 OTHERS = 2.
REUSE_ALV_LIST_LAYOUT_INFO_GET CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET' IMPORTING e_width = lv_size EXCEPTIONS no_infos = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_LIST_LAYOUT_INFO_GET CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET' IMPORTING e_width = lv_size EXCEPTIONS no_infos = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RPLFSA01 - Flexible Spending Account: List of Account Balances RPLFSA01 - Flexible Spending Account: List of Account Balances RPLFRMQ0 - Global forms used with all reports RPLFORU0 - get dependent health information RPLFNDQ0 - Superannuation Fund Report Australia RPLFDXJ3 - Common Routines for Handling TemSe