MDC_MODEL_TABLES

Transparent Table Control Table (SAP+Cust)

Source & Process Data Table Names

MDC_MODEL_TABLES is an SAP database table in S/4HANA. Source & Process Data Table Names. It contains 12 fields. 8 CDS views read from this table.

CDS Views using this table (8)

ViewTypeJoinVDMDescription
I_MDChangeProcessModelTable view from BASIC Process model table
I_MDChangeProcModelSpecialFld view_entity inner BASIC MDC Model special fields
I_MDChangeProcModelTables view from BASIC MD Change Process Model Table Names
I_MDChgProcModelFieldExtension view inner BASIC MD Model Field Ext
I_MDChgProcStepEnrichmentKPI view left_outer BASIC MD Change Process Step Enrichment KPI
I_MDChgProcStepEvaluationKPI view left_outer BASIC MD Change Process Step Evaluation KPI
I_MDQltyModelTable view from BASIC MDQ Model Table
P_MasterDataModelJoin view_entity from BASIC MDC Model Join

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY bo_type MDG_OBJECT_TYPE_CODE_BS Bus. Obj. Type
KEY table_name MDC_TABLE_NAME Table
root_table MDC_ROOT_TABLE Root
process_data MDC_PROCESS_RELEVANT Process
omit_rules MDC_OMIT_RULES Omit Rules
allow_brfplus MDC_BRFPLUS_ALLOWED BRF+
obscured MDC_OBSCURED Hidden
switch_id SFW_SWITCH_ID Switch
switch_reaction SFW_SHOWHIDE Reaction to Switch
deletion_stance MDC_DELETION_STANCE Deletion Stance
rule_mining_supported MDC_RULE_MINING_SUPPORTED Rule Mining
records_removable MDC_REMOVE_UNCHANGED_DATA Removable

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Source & Process Data Table Names
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MDC_MODEL_TABLES (
    BO_TYPE,                -- Bus. Obj. Type [MDG_OBJECT_TYPE_CODE_BS]
    TABLE_NAME,             -- Table [MDC_TABLE_NAME]
    ROOT_TABLE,             -- Root [MDC_ROOT_TABLE]
    PROCESS_DATA,           -- Process [MDC_PROCESS_RELEVANT]
    OMIT_RULES,             -- Omit Rules [MDC_OMIT_RULES]
    ALLOW_BRFPLUS,          -- BRF+ [MDC_BRFPLUS_ALLOWED]
    OBSCURED,               -- Hidden [MDC_OBSCURED]
    SWITCH_ID,              -- Switch [SFW_SWITCH_ID]
    SWITCH_REACTION,        -- Reaction to Switch [SFW_SHOWHIDE]
    DELETION_STANCE,        -- Deletion Stance [MDC_DELETION_STANCE]
    RULE_MINING_SUPPORTED,  -- Rule Mining [MDC_RULE_MINING_SUPPORTED]
    RECORDS_REMOVABLE,      -- Removable [MDC_REMOVE_UNCHANGED_DATA]
    PRIMARY KEY (BO_TYPE, TABLE_NAME)
);