SIT_NOTIF

Transparent Table Application Table

Situation Notifications

SIT_NOTIF is an SAP database table in S/4HANA. Situation Notifications. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SitnDefNotif view from BASIC Notification Details

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY sitndefinitionid SIT_DE_DEF_ID Situation Type ID
KEY sitndefnotificationid SIT_DE_DEF_NOTIFID Situation Notif ID
sitnnotifsemanticobject SIT_DE_NOTIF_SEMANTICOBJ Semantic Object
sitnnotifsemanticobjaction SIT_DE_NOTIF_SEMANTICOBJ_ACT Semantic Obj. Action
sitnnotiftextversion SIT_DE_NOTIF_VERSION Notification Version
sitndefpagevariantid SIT_DE_DEF_PAGE_VARIANTID Page Variant ID
sitndefpagevariantname SIT_DE_DEF_PAGE_VARIANTNAME Variant Name
sitndefapplicationid SIT_DE_DEF_APP_ID SitDefAppID
sitnrespymgmtcontextid RSM_DE_CONTEXT_ID Context 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.

-- Situation Notifications
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SIT_NOTIF (
    CLIENT,                      -- Client [MANDT]
    SITNDEFINITIONID,            -- Situation Type ID [SIT_DE_DEF_ID]
    SITNDEFNOTIFICATIONID,       -- Situation Notif ID [SIT_DE_DEF_NOTIFID]
    SITNNOTIFSEMANTICOBJECT,     -- Semantic Object [SIT_DE_NOTIF_SEMANTICOBJ]
    SITNNOTIFSEMANTICOBJACTION,  -- Semantic Obj. Action [SIT_DE_NOTIF_SEMANTICOBJ_ACT]
    SITNNOTIFTEXTVERSION,        -- Notification Version [SIT_DE_NOTIF_VERSION]
    SITNDEFPAGEVARIANTID,        -- Page Variant ID [SIT_DE_DEF_PAGE_VARIANTID]
    SITNDEFPAGEVARIANTNAME,      -- Variant Name [SIT_DE_DEF_PAGE_VARIANTNAME]
    SITNDEFAPPLICATIONID,        -- SitDefAppID [SIT_DE_DEF_APP_ID]
    SITNRESPYMGMTCONTEXTID,      -- Context ID [RSM_DE_CONTEXT_ID]
    PRIMARY KEY (CLIENT, SITNDEFINITIONID, SITNDEFNOTIFICATIONID)
);