RPUPC2FD 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 RPUPC2FD 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.
INCLUDE RPPPXD10.
INCLUDE: RPPPXD00.
INCLUDE: RPPPXM00.
No SAP DATABASE tables are accessed within this REPORT code!
HR_PCLX_AUTHORITYCHECK_BUFFER CALL FUNCTION 'HR_PCLX_AUTHORITYCHECK_BUFFER' EXPORTING operation = 'UPDATE' relid = 'RF' EXCEPTIONS no_authority = 1 OTHERS = 2.
HR_CHECK_AUTHORITY_INFTY CALL FUNCTION 'HR_CHECK_AUTHORITY_INFTY' EXPORTING tclas = 'A' pernr = lv_pernr infty = '*' subty = '*' level = 'R' EXCEPTIONS no_authorization = 1.
HR_99S_APPEND_ERROR_LIST CALL FUNCTION 'HR_99S_APPEND_ERROR_LIST' EXPORTING pernr = pv_pernr arbgb = ls_msg-msgid msgty = ls_msg-msgty msgno = ls_msg-msgno msgv1 = ls_msg-msgv1 msgv2 = ls_msg-msgv2 msgv3 = space msgv4 = space CHANGING ch_tab_error = gt_error.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.