BPS03M01 is a standard ABAP INCLUDE 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 BPS03M01 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.
Title: Include BPS03M01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_BPS_GET_REQ_CREATE_STATUS CALL FUNCTION 'HR_BPS_GET_REQ_CREATE_STATUS' EXPORTING benefitarea = benarea requesttype = reqtype keydate = requestdate reaction = no_msg IMPORTING positivestatus = positivestatus negativestatus = negativestatus subrc = subrc TABLES error_table = error_table.
RP_EDIT_NAME CALL FUNCTION 'RP_EDIT_NAME' EXPORTING pp0002 = p0002 molga = country_grp langu = sy-langu format = $$format IMPORTING edit_name = employeename retcode = subrc.
HR_BEN_GET_CURRENCY CALL FUNCTION 'HR_BEN_GET_CURRENCY' EXPORTING barea = benefit_area_0171 datum = requestdate reaction = no_msg IMPORTING currency = defaultcurr subrc = subrc TABLES error_table = error_table.
HR_BPS_GET_REQTYPE_CATALOG CALL FUNCTION 'HR_BPS_GET_REQTYPE_CATALOG' EXPORTING benefitarea = benefit_data_0171-barea benefitgroup = benefit_data_0171-bengr benefitstate = benefit_data_0171-bstat requesttype = reqtype reaction = no_msg IMPORTING selperiodbegin = selperiodbegin selperiodend = selperiodend eligibilityruleid = eligibilityruleid penaltydatetype = penaltydatetype subrc = hr_read_subrc TABLES error_table = error_table.
HR_BPS_GET_FROM_FEATURE_REEGR CALL FUNCTION 'HR_BPS_GET_FROM_FEATURE_REEGR' EXPORTING ee_benefit_data = benefit_data_0171 requesttype = reqtype begindate = requestdate enddate = requestdate reaction = no_msg IMPORTING reegr = ee_reegr subrc = hr_read_subrc TABLES error_table = error_table.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = pernr-pernr infty = '0021' begda = requestdate endda = '99991231' IMPORTING subrc = hr_read_subrc TABLES infty_tab = i0021 EXCEPTIONS infty_not_found = 1 OTHERS = 2.
HR_BPS_GET_FROM_FEATURE_REDGR CALL FUNCTION 'HR_BPS_GET_FROM_FEATURE_REDGR' EXPORTING ee_benefit_data = benefit_data_0171 requesttype = reqtype famsa = i0021-subty age = age begindate = requestdate enddate = requestdate reaction = no_msg IMPORTING redgr = dep_redgr subrc = hr_read_subrc TABLES error_table = error_table.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = pernr-pernr infty = '0041' begda = '18000101' endda = '99991231' IMPORTING subrc = hr_read_subrc TABLES infty_tab = i0041 EXCEPTIONS infty_not_found = 1 OTHERS = 2.
HR_BPS_REQUEST_TIMES CALL FUNCTION 'HR_BPS_REQUEST_TIMES' EXPORTING employeenumber = pernr-pernr benefitarea = benefit_area_0171 requesttype = reqtype keydate = requestdate count_1 = true reaction = no_msg IMPORTING pass = times_check_pass subrc = subrc TABLES error_table = error_table.
HR_BPS_GET_REQ_POINT_ACCOUNT CALL FUNCTION 'HR_BPS_GET_REQ_POINT_ACCOUNT' EXPORTING employeenumber = pernr-pernr benefitarea = benefit_area_0171 requesttype = reqtype keydate = requestdate reaction = no_msg IMPORTING pointaccount = pointaccount initialbalance = initialbalance pointsaccbegda = accountbegda pointsaccendda = accountendda subrc = subrc TABLES error_table = error_table.
HR_BPS_CALC_CURR_FORE_BALANCE CALL FUNCTION 'HR_BPS_CALC_CURR_FORE_BALANCE' EXPORTING benefitarea = benefit_area_0171 employeenumber = pernr-pernr benpointaccount = pointaccount selectionbegda = accountbegda selectionendda = query_endda accinitialbalance = initialbalance reaction = no_msg IMPORTING currentbalance = currentbalance foreseeablebalance = foreseeablebalance subrc = subrc TABLES error_table = error_table.
HR_BPS_CHECK_REIMB_AND_DEDUCT CALL FUNCTION 'HR_BPS_CHECK_REIMB_AND_DEDUCT' EXPORTING employeenumber = request_list-pernr benefitarea = request_list-barea requesttype = reqtype keydate = requestdate reimburseamount = request_list-rbamt reimburseamtcur = request_list-curre deductpoints = request_list-rdpts reaction = no_msg IMPORTING pass = pass subrc = subrc TABLES error_table = error_table.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.