RPUCPC00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for
If you would like to execute this report or see the full code listing simply enter RPUCPC00 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: SELCLIEN = Client
Selection Text: SELPERIO = Year (YYYY)
Selection Text: SELPERNR = Personnel number
Selection Text: TEST = Test
Title: Convert cluster PC(PCL1) Submit by RPUCPC50
Text Symbol: 001 = Import of cluster record unsuccessful
INCLUDE RPPPXD10.
INCLUDE: RPPPXD00.
INCLUDE RPC1PC00.
INCLUDE RPOCPC01.
INCLUDE RPC1PCU1.
No SAP DATABASE tables are accessed within this REPORT code!
APPEND_PROTOCOL * call function 'APPEND_PROTOCOL' * exporting accept_not_init = 'X' * tables xmsg = mess_tab * exceptions table_empty = 1 * prot_not_initialized = 2.
TR_APPEND_LOG CALL FUNCTION 'TR_APPEND_LOG' TABLES XMSG = MESS_TAB EXCEPTIONS FILE_NOT_FOUND = 8 OTHERS = 16.
TR_FLUSH_LOG CALL FUNCTION 'TR_FLUSH_LOG'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.