RMCSUTIC 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 RMCSUTIC into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MCSCHECK - Check Utility - Logistic Infosystem
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_FS_A = Update Programs
Selection Text: P_FLA_A = Existing Flexible Analyses
Selection Text: P_FCT = Field Catalogs
Selection Text: H_MCINF = Info Structure
Selection Text: H_MCAPP = Application
Selection Text: H_MANDT = Client
Selection Text: P_UNIT = Units
Selection Text: P_STT = Control Tables
Selection Text: P_STA_C = Standard Default Settings
Selection Text: P_STA_B = Compare Key Figures IS and STA
Selection Text: P_STA_A = Existing Standard Analyses
Selection Text: P_IS_D = Stock Values
Selection Text: P_IS_C = Assignments to Info Structures
Selection Text: P_IS_B = Fields LIS/Dictionary
Selection Text: P_IS_A = Status LIS/Dictionary
Selection Text: P_FS_E = Formulas/Requirements
Selection Text: P_FS_D = Characteristics/Key Figures
Selection Text: P_FS_C = Update Group/Event
Selection Text: P_FS_B = Update Indicators
Title: Check Utility - Logistics Info System (LIS)
Text Symbol: 001 = Selection
Text Symbol: 002 = Updating
Text Symbol: 003 = Info Structure
Text Symbol: 004 = Standard Analysis
Text Symbol: 005 = Flexible Analysis
Text Symbol: 006 = LIS Control Tables
INCLUDE RMCSUTIC_LOG.
INCLUDE RMCSUTIC_UNITS.
INCLUDE RMCSUTIC_EXCEPTIONS.
INTO STRING80 SEPARATED BY SPACE.
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = lv_name all_types = 'X' "only rel => 4.5
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = tmc6_sap-qutab fieldname = tmc6_sap-qufna TABLES dfies_tab = dfies_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = tmc6_cus-qutab fieldname = tmc6_cus-qufna TABLES dfies_tab = dfies_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
MCS_INFO_STATUS_GET CALL FUNCTION 'MCS_INFO_STATUS_GET' EXPORTING i_gstru = int_tmc4-gstru i_mcinf = int_tmc4-mcinf i_client = h_mandt i_no_check_data = 'X' IMPORTING e_mcsti = lv_mcsti EXCEPTIONS OTHERS = 1.
DDIF_STATE_GET CALL FUNCTION 'DDIF_STATE_GET' EXPORTING type = 'TABL' name = lv_gstru state = 'M' IMPORTING gotstate = lv_gotstate EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_STATE_GET CALL FUNCTION 'DDIF_STATE_GET' EXPORTING type = 'TABL' name = lv_gstru state = 'M' IMPORTING gotstate = lv_gotstate EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = lv_name state = 'A' langu = sy-langu IMPORTING gotstate = lv_gotstate TABLES dd03p_tab = ddic_fields EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = lv_name state = 'A' langu = sy-langu IMPORTING gotstate = lv_gotstate TABLES dd03p_tab = ddic_fields_x EXCEPTIONS illegal_input = 1 OTHERS = 2.
MCS_INFO_STRUCTURE_CONSISTENT CALL FUNCTION 'MCS_INFO_STRUCTURE_CONSISTENT' EXPORTING i_mandt = h_mandt i_mcinf = int_tmc4-mcinf i_flg_test = ' ' i_flg_no_prot = 'X' IMPORTING e_flg_dom_fault = flg_dom_fault e_flg_dtel_fault = flg_dtel_fault e_flg_field_fault = flg_field_fault e_flg_unit_fault = flg_unit_fault EXCEPTIONS mcinf_not_defined = 01 table_not_active = 02.
CALL FUNCTION 'CALL FUNCTION' INTO string80 SEPARATED BY space.
CALL FUNCTION 'CALL FUNCTION' INTO string80 SEPARATED BY space.
CALL FUNCTION 'CALL FUNCTION' INTO string80 SEPARATED BY space.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = t_zusatz-zusatz_tab state = 'A' langu = sy-langu TABLES dd03p_tab = ddic_fields EXCEPTIONS illegal_input = 1 OTHERS = 2.
CALL FUNCTION IF lt_coding CS 'CALL FUNCTION'.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = comstruc TABLES dd03p_tab = lt_dd03p EXCEPTIONS illegal_input = 1 OTHERS = 2.
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = lt_dd03p-precfield TABLES dd03p_tab = lt_dd03p_2 EXCEPTIONS illegal_input = 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.