CNDN_CHG_REASONT

Transparent Table Customizing Table

Texts: Reason for Changing Condition Record

CNDN_CHG_REASONT is an SAP database table in S/4HANA. Texts: Reason for Changing Condition Record. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_ConditionChangeReasonText view from BASIC Reason Text for Changing Condition Record

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY spras spras Language
KEY kvewe kvewe Usage
KEY kappl kappl Application
KEY cndn_chgreason cndn_chgreason Cndn Change Reason
text vtxtm 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.

-- Texts: Reason for Changing Condition Record
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CNDN_CHG_REASONT (
    MANDT,           -- Client [mandt]
    SPRAS,           -- Language [spras]
    KVEWE,           -- Usage [kvewe]
    KAPPL,           -- Application [kappl]
    CNDN_CHGREASON,  -- Cndn Change Reason [cndn_chgreason]
    TEXT,            -- Description [vtxtm]
    PRIMARY KEY (MANDT, SPRAS, KVEWE, KAPPL, CNDN_CHGREASON)
);