MSCATF30_CALL_RECORDER is a standard ABAP INCLUDE 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 MSCATF30_CALL_RECORDER 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CAT_SET_CATTAKTIV CALL FUNCTION 'CAT_SET_CATTAKTIV' DESTINATION rfcdestination EXPORTING neucom = rscat-neucom EXCEPTIONS communication_failure = 1 MESSAGE rfc_failure system_failure = 2 MESSAGE rfc_failure.
CAT_PING CALL FUNCTION 'CAT_PING' DESTINATION rfcdestination IMPORTING sysinfo = dest_sysinfo.
CAT_CONTROLS_INIT CALL FUNCTION 'CAT_CONTROLS_INIT' DESTINATION rfcdestination EXPORTING ablnr = *cata-ablnr commid = tmptcdid subid = tmpdynid * MODE = 'R' * TABLES * PARAMS = * VERBS = * VARS = * bdctab = .
CAT_DATAPROV_INIT CALL FUNCTION 'CAT_DATAPROV_INIT' DESTINATION rfcdestination EXPORTING ablnr = *cata-ablnr commid = tmptcdid subid = tmpdynid * MODE = 'R' * TABLES * DP_TAB = * DP_FOR = * DP_PRO = * DP_FLD = .
CNTH_INTERNALUSE_RESET_SHELLID CALL FUNCTION 'CNTH_INTERNALUSE_RESET_SHELLID' EXPORTING situation = 1 EXCEPTIONS catt_illegal_situation = 1 OTHERS = 2.
BDC_RECORD_TRANSACTION CALL FUNCTION 'BDC_RECORD_TRANSACTION' DESTINATION rfcdestination EXPORTING tcode = rscat-fk_tcd * AUTHORITY_CHECK = 'X' options = tcd_options * mode = 'B' * update = 'M' TABLES dynprotab = tmpbdcdata messtab = tmpmesstab EXCEPTIONS system_failure = 1 invalid_transaction = 2 invalid_mode = 3 invalid_update = 4 OTHERS = 5.
BDC_RECORD_TRANSACTION CALL FUNCTION 'BDC_RECORD_TRANSACTION' DESTINATION rfcdestination EXPORTING tcode = rscat-fk_tcd * AUTHORITY_CHECK = 'X' mode = 'A' UPDATE = 'L' TABLES dynprotab = tmpbdcdata messtab = tmpmesstab EXCEPTIONS system_failure = 1 invalid_transaction = 2 invalid_mode = 3 invalid_update = 4 OTHERS = 5.
CNTH_INTERNALUSE_RESET_SHELLID CALL FUNCTION 'CNTH_INTERNALUSE_RESET_SHELLID' EXPORTING situation = 2 EXCEPTIONS catt_illegal_situation = 1 OTHERS = 2.
CAT_CONTROLS_GET_DATA CALL FUNCTION 'CAT_CONTROLS_GET_DATA' DESTINATION rfcdestination TABLES params = tmpparams verbs = tmpverbs vars = tmpvars bdctab = tmpbdctab.
CAT_DATAPROV_GET_DATA CALL FUNCTION 'CAT_DATAPROV_GET_DATA' DESTINATION rfcdestination TABLES dp_tab = tmpdp_tab dp_for = tmpdp_for dp_pro = tmpdp_pro dp_fld = tmpdp_fld.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.