ADP_CATT 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 ADP_CATT 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_UPD = Delta Load in Update
Selection Text: P_TMODE = Test Mode in Target System
Selection Text: P_TARGET = Target System RFC Connection
Selection Text: P_STOP = Stop at First Error
Selection Text: P_SOURCE = Source System RFC Connection
Selection Text: P_SNDMOD = D Send XML
Selection Text: P_SMODE = Test Mode in Source System
Selection Text: P_N_TABN = Number of /CRMMW/TST Entries
Selection Text: P_N_TAB2 = Number of CRMADPTST2 Entries
Selection Text: P_N_TAB1 = Number of CRMADPTST1 Entries
Selection Text: P_LOADTY = D Internal Adapter: Type of Load
Selection Text: P_IGNRAW = Ignore RAW Fields Error
Selection Text: P_DELTOP = D Delta Operation
Title: Automated Adapter Tests
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ADPTST_PREPARE_TEST_TABLES CALL FUNCTION 'ADPTST_PREPARE_TEST_TABLES' DESTINATION p_target EXPORTING i_target_mode = p_tmode EXCEPTIONS operation_failed = 1 OTHERS = 2.
ADPTST_PREPARE_TEST_TABLES CALL FUNCTION 'ADPTST_PREPARE_TEST_TABLES' DESTINATION p_source EXPORTING i_source_mode = p_smode i_no_of_tst1_entries = p_n_tab1 i_no_of_tst2_entries = p_n_tab2 i_no_of_nsp_entries = p_n_tabn i__no_db_update = lv_no_db_update TABLES to_crmadptst1 = lt_crmadptst1 to_crmadptst2 = lt_crmadptst2 EXCEPTIONS operation_failed = 1 OTHERS = 2.
ADPTST_TRIGGER_DELTA_LOAD CALL FUNCTION 'ADPTST_TRIGGER_DELTA_LOAD' EXPORTING i_delta_op_1 = p_deltop i_upd = p_upd TABLES ti_crmadptst1 = lt_crmadptst1 ti_crmadptst2 = lt_crmadptst2.
ADPTST_CHECK_TEST_TABLES CALL FUNCTION 'ADPTST_CHECK_TEST_TABLES' DESTINATION p_target EXPORTING i_source_mode = p_smode i_check_crmadptst1 = lv_tab1_check i_check_crmadptst2 = lv_tab2_check i_check_crmmwtst = lv_tabn_check i_stop_at_first_err = p_stop i_ignore_raw_errors = p_ignraw TABLES to_crmadptst1_err = lt_crmadptst1 to_crmadptst2_err = lt_crmadptst2 to_bapiret2 = lt_bapiret2 EXCEPTIONS operation_failed = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.