RPUC_CLEANUP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program submits HR clean-up reports for SAP assembly Starting the program in customer systems makes no sense...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RPUC_CLEANUP 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: P_SUBPW1 = Password for tables
Selection Text: P_SUBPW2 = Password for forms
Selection Text: P_SUBPW3 = Password for schemes
Selection Text: P_TEST = Test mode
Title: Submit clean-up programs
Text Symbol: 001 = Client differs from the HR standard client
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LIST_FROM_MEMORY CALL FUNCTION 'LIST_FROM_MEMORY' TABLES listobject = list_tab EXCEPTIONS not_found = 1 OTHERS = 2.
WRITE_LIST CALL FUNCTION 'WRITE_LIST' TABLES listobject = list_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.