TVARCT

Transparent Table Application Table

Text for Variants Conditions

TVARCT is an SAP database table in S/4HANA. Text for Variants Conditions. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_VariantConditionText view from BASIC Variant Condition - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY spras spras Language
KEY varcond varcond Variant Key
vctext bezei40 Description

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.

-- Text for Variants Conditions
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TVARCT (
    MANDT,    -- Client [mandt]
    SPRAS,    -- Language [spras]
    VARCOND,  -- Variant Key [varcond]
    VCTEXT,   -- Description [bezei40]
    PRIMARY KEY (MANDT, SPRAS, VARCOND)
);