SGBT_NTE_TYPE

Transparent Table Control Table (SAP+Cust)

Notes: Definition von Notiztypen

SGBT_NTE_TYPE is an SAP database table in S/4HANA. Notes: Definition von Notiztypen. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
R_APNANoteType view_entity from BASIC Note Type
Sgbt_Nte_Cds_Ntype view from BASIC CDS View für Notiztypen für Notizen am Anwendungsobjekt

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY name nte_ntyname Name
langdep nte_langdep Language-Dependent
maxlength nte_maxlength Maximum Length
multiple nte_multiple Multiple Notes
no_subject nte_nosubject No subject
changer nte_changer Last Changed By
changed nte_changed Last Changed at
profile nte_profile Profile
dpclass nte_dpclass Data Provider Class

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: Definition von Notiztypen
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SGBT_NTE_TYPE (
    MANDT,       -- Client [mandt]
    NAME,        -- Name [nte_ntyname]
    LANGDEP,     -- Language-Dependent [nte_langdep]
    MAXLENGTH,   -- Maximum Length [nte_maxlength]
    MULTIPLE,    -- Multiple Notes [nte_multiple]
    NO_SUBJECT,  -- No subject [nte_nosubject]
    CHANGER,     -- Last Changed By [nte_changer]
    CHANGED,     -- Last Changed at [nte_changed]
    PROFILE,     -- Profile [nte_profile]
    DPCLASS,     -- Data Provider Class [nte_dpclass]
    PRIMARY KEY (MANDT, NAME)
);