RCRRTEST 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 RCRRTEST 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: ALL = Complete run
Selection Text: CANDS = Clean and start recording
Selection Text: CLEANUP = Clean up objects
Selection Text: INIT_REC = Initialize recorder
Selection Text: INIT_REP = Initialize replicator
Selection Text: LTRANS = Last transfer
Selection Text: PANDT = Prepare and transfer
Selection Text: PREPARE = Prepare transfer
Selection Text: SANDL = Stop and last transfer
Selection Text: SETTASKS = Initialize tasks
Selection Text: START = Start recording
Selection Text: STOP = Stop recording
Selection Text: TRANSFER = Transfer changes
Title: Program RCRRTEST
Text Symbol: 010 = Composite options
Text Symbol: 011 = Single options
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CRR_SET_CONFIG **call function 'CRR_SET_CONFIG' ** exporting ** iv_scenario = lv_scenario ** it_fw_parameters = lt_fw_params ** it_sc_parameters = lt_sc_params.
CRR_CLEANUP ** call function 'CRR_CLEANUP' *** EXPORTING *** iv_scenario = lv_scenario ** importing ** ev_rc = lv_rc.
CRR_SETUP ** call function 'CRR_SETUP' ** exporting ** iv_scenario = lv_scenario ** iv_role = cl_crr_sys_role=>mc_source_system ** importing ** ev_rc = lv_rc.
CRR_START_RECORDING ** call function 'CRR_START_RECORDING' *** EXPORTING *** iv_scenario = lv_scenario ** importing ** ev_rc = lv_rc.
CRR_SETUP ** call function 'CRR_SETUP' ** exporting ** iv_scenario = lv_scenario ** iv_role = cl_crr_sys_role=>mc_target_system ** importing ** ev_rc = lv_rc.
CRR_TRANSFER_X ** call function 'CRR_TRANSFER_X' *** EXPORTING *** iv_scenario = lv_scenario ** importing ** ev_rc = lv_rc.
CRR_STOP_RECORDING ** call function 'CRR_STOP_RECORDING' *** EXPORTING *** iv_scenario = lv_scenario ** importing ** ev_rc = lv_rc.
CRR_TRANSFER_X ** call function 'CRR_TRANSFER_X' ** exporting ** iv_final = 'X' *** iv_scenario = lv_scenario ** importing ** ev_rc = lv_rc.
CRR_INIT_SCENARIO_T3 ** call function 'CRR_INIT_SCENARIO_T3' ** exporting ** iv_scenario = scenario ** iv_role = cl_crr_sys_role=>mc_single_system ** it_tables = lt_tabs ** iv_cleanup = 'X' ** importing ** ev_rc = lv_rc.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.