MDI_REF_OBJECT

Transparent Table Application Table

MDI missing References Objects table

MDI_REF_OBJECT is an SAP database table in S/4HANA. MDI missing References Objects table. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MDIReferenceObject view_entity from MDI Reference Objects

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
aif_msg_id mdi_aif_msg_guid Message ID
ref_type mdi_reference_type Reference Type
status mdi_reference_status Reference Status
changed_on tzntstmps Time Stamp

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.

-- MDI missing References Objects table
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MDI_REF_OBJECT (
    MANDT,       -- Client [mandt]
    AIF_MSG_ID,  -- Message ID [mdi_aif_msg_guid]
    REF_TYPE,    -- Reference Type [mdi_reference_type]
    STATUS,      -- Reference Status [mdi_reference_status]
    CHANGED_ON,  -- Time Stamp [tzntstmps]
    PRIMARY KEY (MANDT)
);