RPCMUNI0 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 RPCMUNI0 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RP_HIRE_FIRE CALL FUNCTION 'RP_HIRE_FIRE' exporting beg = pn-begda end = pn-endda importing hire_date = l_assunzione tables pp0000 = p0000 "in pp0001 = p0001 "in pphifi = phifi. "out
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = p0000-pernr infty = '0156' begda = data_residenza endda = data_residenza
IMPORTING subrc = return TABLES infty_tab = l_p0156 EXCEPTIONS infty_not_found = 1 others = 2.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING pernr = p0000-pernr infty = '0156' begda = data_anno_corrente endda = data_anno_corrente IMPORTING subrc = return TABLES infty_tab = l_p0156 EXCEPTIONS infty_not_found = 1 others = 2.
RP_LAST_DAY_OF_MONTHS CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS' EXPORTING day_in = l_begda_mese_prec IMPORTING last_day_of_month = l_endda_mese_prec.
HR_GET_PAYROLL_RESULTS CALL FUNCTION 'HR_GET_PAYROLL_RESULTS' EXPORTING PERNR = pernr-pernr * PERMO = 01 PABRJ = l_year PABRP = l_month PABRJ_END = l_year PABRP_END = l_month * INPER_LST = INPER_ACT = l_paper * ACTUAL = * WAERS = * ARCH_TOO = TABLES RESULT_TAB = lt_payroll_result EXCEPTIONS NO_RESULTS = 1 ERROR_IN_CURRENCY_CONVERSION = 2 T500L_ENTRY_NOT_FOUND = 3 PERIOD_MISMATCH_ERROR = 4 T549Q_ENTRY_NOT_FOUND = 5 INTERNAL_ERROR = 6 WRONG_STRUCTURE_OF_RESULT_TAB = 7 OTHERS = 8 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.