SCDT_SYSTEM_MAPPING_F13 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 SCDT_SYSTEM_MAPPING_F13 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!
SCDT_MAPPING_GET_RFCDEST CALL FUNCTION 'SCDT_MAPPING_GET_RFCDEST' EXPORTING i_systemtype = p_system i_rel_from = p_rel_from i_rel_to = p_rel_to IMPORTING e_rfcdest = rfc_destination EXCEPTIONS no_destination = 1 OTHERS = 2.
SCCR_GET_RELEASE_NR CALL FUNCTION 'SCCR_GET_RELEASE_NR' DESTINATION rfc_destination IMPORTING sap_release = lv_release * CODE_PAGE = * CHECK_NUMBER = * SYSID = * MANDT = * COPYLOCK = EXCEPTIONS communication_failure = 5 MESSAGE msg_text system_failure = 6 MESSAGE msg_text OTHERS = 0 .
DEQUEUE_E_SCDTOBJECT CALL FUNCTION 'DEQUEUE_E_SCDTOBJECT' EXPORTING mode_scdtobject = 'E' id = scdtobjmap-id system_trg = scdtobjmap-system_trg.
SCT1_GET_NAMETAB_RFC_40_30 CALL FUNCTION 'SCT1_GET_NAMETAB_RFC_40_30' EXPORTING iv_rfc_destination = rfc_destination iv_view_name = lt_objs-tabname * IV_VIEW_VARIANT = ' ' * IV_GET_OUTPUT_ATTR = 'X' iv_view_table_flag = flag TABLES et_namtab = lt_nametab et_header_view = lt_header_view
EXCEPTIONS not_found = 1 no_fields = 2 not_active = 3 no_tvdir_entry = 4 communication_failure = 5 system_failure = 6 OTHERS = 7 .
SCT1_GET_NAMETAB_RFC_40_30 CALL FUNCTION 'SCT1_GET_NAMETAB_RFC_40_30' EXPORTING iv_rfc_destination = rfc_destination iv_view_name = lt_objs-tabname * IV_VIEW_VARIANT = ' ' * IV_GET_OUTPUT_ATTR = 'X' iv_view_table_flag = flag * IV_LANGUAGE = SY-LANGU * IV_SELECT_BY_SELLIST = * IMPORTING * EV_AUTH = TABLES et_namtab = lt_nametab * ET_HEADER = * ET_NAMTAB_VIEW = * ET_HEADER_VIEW = * ET_SELLIST = EXCEPTIONS not_found = 1 no_fields = 2 not_active = 3 no_tvdir_entry = 4 communication_failure = 5 system_failure = 6 OTHERS = 7 .
GET_TABLE_KEYLIST_RFC CALL FUNCTION 'GET_TABLE_KEYLIST_RFC' EXPORTING tabname = p_tabname get_systab = 'X' rfc_dest = p_dest * MTYPE = * MTABNAME = * IMPORTING * NR_OF_ROWS = TABLES * NAME_TAB = inttab = pt_table tabkey = pt_tab_fld EXCEPTIONS client_not_found = 1 protected = 2 read_error = 3 table_not_found = 4 too_small = 5 convert_error = 6 wrong_type = 7 fieldtab_error = 8 no_rights = 9 rfc_error = 10 length_error = 11 OTHERS = 12 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.