RPCTRDU0 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 RPCTRDU0 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: TXCMP = Tax company
Selection Text: PUSER = Output produced by:
Selection Text: PERNR = Personnel number
Selection Text: PDATE = Created On
Selection Text: FRMNM = D .
Selection Text: DISPLAY = Display productive data
Selection Text: DELTRES = Display test data
Selection Text: DELTEST = Delete test data
Selection Text: DELPROD = Delete productive data
Title: PCL4 -DISPLAY/DELETE (U1)
Text Symbol: 012 = Tax company not found
Text Symbol: 011 = Delete Selection
Text Symbol: 010 = Display Selection
Text Symbol: 009 = Data will be lost!
Text Symbol: 008 = Do you want to proceed?
Text Symbol: 007 = Test data will be deleted.
Text Symbol: 006 = Delete Production PCL4 Data
Text Symbol: 005 = Delete Test PCL4 Data
Text Symbol: 004 = Display PCL4 Data
Text Symbol: 003 = Productive results will be deleted
Text Symbol: 002 = Action for selections
Text Symbol: 001 = Selection/Deletion criteria
INCLUDE RPCTRCUM.
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID I_CALLBACK_USER_COMMAND = G_USER_COMMAND IT_FIELDCAT = GT_FIELDCAT1[] * IS_LAYOUT = GS_LAYOUT I_SAVE = G_SAVE IS_VARIANT = GS_VARIANT IT_EVENTS = GT_EVENTS[] * IMPORTING * E_EXIT_CAUSED_BY_CALLER = G_EXIT_CAUSED_BY_CALLER * ES_EXIT_CAUSED_BY_USER = GS_EXIT_CAUSED_BY_USER TABLES T_OUTTAB = itab2 EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
POPUP_TO_CONFIRM_LOSS_OF_DATA call function 'POPUP_TO_CONFIRM_LOSS_OF_DATA' exporting textline1 = text-007 textline2 = text-008 titel = text-009 importing answer = ans exceptions others = 1.
HR_US_POPUP_CONFIRM_DELETION CALL FUNCTION 'HR_US_POPUP_CONFIRM_DELETION' EXPORTING iv_xpos = 25 iv_ypos = 05 iv_utxrp = lv_utxrp iv_utxtm = lv_utxtm IMPORTING ev_answer = lv_answer CHANGING ct_txcmp = p_txcmp[].
POPUP_TO_CONFIRM_LOSS_OF_DATA call function 'POPUP_TO_CONFIRM_LOSS_OF_DATA' exporting textline1 = text-003 textline2 = text-008 titel = text-009 importing answer = ans exceptions others = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.