STST

Transparent Table Application Table

Standard BOM Link

STST is an SAP database table in S/4HANA. Standard BOM Link. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_StandardBOMLink view from BASIC Standard Link for BOM
I_Stst view from BASIC Standard BOM Link

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY stobj STOBJ Standard object
KEY werks WERKS_D Plant
KEY stlan STLAN Usage
KEY stlnr STNUM BOM
KEY stlal STALT Alternative
andat ANDAT Created On
annam ANNAM Created by
aedat AEDAT Changed On
aenam AENAM Changed By

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.

-- Standard BOM Link
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE STST (
    MANDT,  -- Client [MANDT]
    STOBJ,  -- Standard object [STOBJ]
    WERKS,  -- Plant [WERKS_D]
    STLAN,  -- Usage [STLAN]
    STLNR,  -- BOM [STNUM]
    STLAL,  -- Alternative [STALT]
    ANDAT,  -- Created On [ANDAT]
    ANNAM,  -- Created by [ANNAM]
    AEDAT,  -- Changed On [AEDAT]
    AENAM,  -- Changed By [AENAM]
    PRIMARY KEY (MANDT, STOBJ, WERKS, STLAN, STLNR, STLAL)
);