RPUPMSP0 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 RPUPMSP0 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: Selection screen for PY processes
INCLUDE RPC2PS00.
INCLUDE RPC2PT00.
No SAP DATABASE tables are accessed within this REPORT code!
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = curr_report TABLES selection_table = pernr_params EXCEPTIONS not_found = 1 no_report = 2 OTHERS = 3.
HR_CHECK_ABKRS_FOR_PAYROLL * CALL FUNCTION 'HR_CHECK_ABKRS_FOR_PAYROLL' * EXPORTING * imp_t549a_wa = l_549a * imp_permo = pn-permo * imp_checkpa03abr = fc-sw_checkpa03abr * imp_sw_upd = fc-sw_upd * imp_paper_pabrj = pn-paper-pabrj * imp_paper_pabrp = pn-paper-pabrp ** IMP_ON_DEMAND_CHECK = * imp_rueck_ab = rueck_ab * TABLES * imp_abkrs = pnpabkrs * EXCEPTIONS * not_calculation = 1 * wrong_permo = 2 * no_control_record = 3 * payroll_not_released = 4 * retro_too_far_back = 5.
HRPY_PROCESS_GET_PAYROLL_ABKRS CALL FUNCTION 'HRPY_PROCESS_GET_PAYROLL_ABKRS' EXPORTING imp_processid = imp_processid imp_permo = pn-permo imp_paper_pabrj = pn-paper-pabrj imp_paper_pabrp = pn-paper-pabrp IMPORTING exp_sw_upd = sw_check_pa03 exp_sw_check_pa03 = sw_upd * EXP_RUECK_AB = TABLES pnp_abkrs = pnpabkrs EXCEPTIONS * PROCESS_WITHOUT_CALC = 1 * NO_RELEVANT_ABKRS = 2 OTHERS = 0.
RS_VARIANT_VALUES_TECH_DATA CALL FUNCTION 'RS_VARIANT_VALUES_TECH_DATA' EXPORTING report = p_progname variant = p_progvari TABLES variant_values = values EXCEPTIONS variant_non_existent = 1 variant_obsolete = 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.