SGBT_NTE_ATTR

Transparent Table Application Table

Zusatzattribute

SGBT_NTE_ATTR is an SAP database table in S/4HANA. Zusatzattribute. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_NOTEBASICATTRIBUTE view from BASIC Attribut einer Notiz
sgbt_nte_cds_attr view from BASIC Zusatzattribute

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY attrid nte_attr_id Attribute Value ID
noteid nte_id Note ID
attrposition nte_attr_position Position
attrvalue nte_attr_value Attribute Value
creator nte_creator Created By
created nte_created Created At
changer nte_changer Last Changed By
changed nte_changed Last Changed at

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.

-- Zusatzattribute
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SGBT_NTE_ATTR (
    MANDT,         -- Client [mandt]
    ATTRID,        -- Attribute Value ID [nte_attr_id]
    NOTEID,        -- Note ID [nte_id]
    ATTRPOSITION,  -- Position [nte_attr_position]
    ATTRVALUE,     -- Attribute Value [nte_attr_value]
    CREATOR,       -- Created By [nte_creator]
    CREATED,       -- Created At [nte_created]
    CHANGER,       -- Last Changed By [nte_changer]
    CHANGED,       -- Last Changed at [nte_changed]
    PRIMARY KEY (MANDT, ATTRID)
);