RSCC_VERIFY 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 RSCC_VERIFY 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: CLUS_TAB = Check Individ. Cluster Tables
Title: Verify Last Client Copy
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CLIENTCOPY_SELECT_SUSR_PROFS CALL FUNCTION 'CLIENTCOPY_SELECT_SUSR_PROFS' EXPORTING CC_SOURCECLIENT = '000' TABLES E071K_TAB = TMP_E071K E071_TAB = TMP_E071 EXCEPTIONS SYS_ERROR = 0 OTHERS = 0.
CLIENTCOPY_SELECT_SUSR CALL FUNCTION 'CLIENTCOPY_SELECT_SUSR' EXPORTING CC_SOURCECLIENT = '000' TABLES E071K_TAB = TMP_E071K E071_TAB = TMP_E071 EXCEPTIONS SYS_ERROR = 0 OTHERS = 0.
ADDR_CLIENTCOPY_SELECT_TABLES CALL FUNCTION 'ADDR_CLIENTCOPY_SELECT_TABLES' EXPORTING CC_SOURCECLIENT = '000' TABLES E071K_TAB = TMP_E071K E071_TAB = TMP_E071 EXCEPTIONS SYS_ERROR = 0 OTHERS = 0.
BEFORE_EXP_ADDRESS3 CALL FUNCTION 'BEFORE_EXP_ADDRESS3' EXPORTING IV_SRCCLIENT = 'XXX' TRKORR = 'TEST' TABLES TT_E071 = TMP_E071 TT_E071K = TMP_E071K.
SRTT_GET_TABLE_SIZE_RFC CALL FUNCTION 'SRTT_GET_TABLE_SIZE_RFC' DESTINATION CCCFLOW-SYSNAME EXPORTING TABLE_NAME = SELTAB-TABNAME IMPORTING TABLE_SIZE = CURRENT_S EXCEPTIONS CLIENT_NOT_FOUND = 1 TABLE_NOT_FOUND = 2 TABLE_INKONSISTENT = 3 PROTECTED = 4 WRONG_TYPE = 5 COMMUNICATION_FAILURE = 6 MESSAGE MSG_TEXT SYSTEM_FAILURE = 7 MESSAGE MSG_TEXT OTHERS = 8.
TH_REDISPATCH CALL FUNCTION 'TH_REDISPATCH'.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = SELTAB-TABNAME TABLES DFIES_TAB = DFIES EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
TH_REDISPATCH CALL FUNCTION 'TH_REDISPATCH'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.