SGBT_NTE_DEMO

Transparent Table Application Table

Notes: Test-Applikation für Notizen am Anwendungsobjekt

SGBT_NTE_DEMO is an SAP database table in S/4HANA. Notes: Test-Applikation für Notizen am Anwendungsobjekt. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_Sgbt_Nte_Cds_Demotp view from TRANSACTIONAL Demo:Notizen am Anwendungsobjekt - Draft
Sgbt_Nte_Cds_Demo view from CONSUMPTION CDS View für Demo-Anwendung für Notizen am Anwendungsobjekt

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY objectnodetype sbo_node_type SAP Obj Node Type
KEY objectid nte_objectid Object ID
descr nte_title Title
creator nte_creator Created By
created nte_created Created At
changer nte_changer Last Changed By
changed nte_changed Last Changed at
supp_ntypes nte_suppntypes Note Types
change_objectid nte_chng_objectid Change Object 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.

-- Notes: Test-Applikation für Notizen am Anwendungsobjekt
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SGBT_NTE_DEMO (
    MANDT,            -- Client [mandt]
    OBJECTNODETYPE,   -- SAP Obj Node Type [sbo_node_type]
    OBJECTID,         -- Object ID [nte_objectid]
    DESCR,            -- Title [nte_title]
    CREATOR,          -- Created By [nte_creator]
    CREATED,          -- Created At [nte_created]
    CHANGER,          -- Last Changed By [nte_changer]
    CHANGED,          -- Last Changed at [nte_changed]
    SUPP_NTYPES,      -- Note Types [nte_suppntypes]
    CHANGE_OBJECTID,  -- Change Object ID [nte_chng_objectid]
    PRIMARY KEY (MANDT, OBJECTNODETYPE, OBJECTID)
);