SUI_TM_MM_APPDEP

Transparent Table System Table (transport)

Deprecation handling

SUI_TM_MM_APPDEP is an SAP database table in S/4HANA. Deprecation handling. It contains 3 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
CDS_SUI_TM_MM_APP view left_outer View for App Descriptor Items - all fields
CDS_SUI_TM_MM_APP_A view left_outer CDS View for Launchpad App Descriptor Items - reduced view
CDS_SUI_TM_MM_TCODE view left_outer CDS View for Transaction Codes (which are used in an LADI)

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY app_id /UI2/AD_MM_APP_ID App ID
deprecated /UI2/AD_MM_DEPRECATION Deprecation
successor /UI2/AD_MM_SUCCESSOR App ID

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.

-- Deprecation handling
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SUI_TM_MM_APPDEP (
    APP_ID,      -- App ID [/UI2/AD_MM_APP_ID]
    DEPRECATED,  -- Deprecation [/UI2/AD_MM_DEPRECATION]
    SUCCESSOR,   -- App ID [/UI2/AD_MM_SUCCESSOR]
    PRIMARY KEY (APP_ID)
);