TVSU

Transparent Table Customizing Table

Material Substitution: Reasons

TVSU is an SAP database table in S/4HANA. Material Substitution: Reasons. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MaterialSubstitutionReason view from BASIC Material Substitution Reason

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY sugrd sugrd Reasn
sudru sudru Original entry
sudia sudia Warning
suvfp suvfp DepndtOnAvlbChk
subar subar Strategie
suerg suerg Outcome
sutyp sutyp Category

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.

-- Material Substitution: Reasons
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TVSU (
    MANDT,  -- Client [mandt]
    SUGRD,  -- Reasn [sugrd]
    SUDRU,  -- Original entry [sudru]
    SUDIA,  -- Warning [sudia]
    SUVFP,  -- DepndtOnAvlbChk [suvfp]
    SUBAR,  -- Strategie [subar]
    SUERG,  -- Outcome [suerg]
    SUTYP,  -- Category [sutyp]
    PRIMARY KEY (MANDT, SUGRD)
);