CABN_EXCL

Transparent Table Application Table

Characteristics That Are Excluded for Type Matching

CABN_EXCL is an SAP database table in S/4HANA. Characteristics That Are Excluded for Type Matching. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_VarCnfExclCharcDetail view_entity from BASIC Characteristics Exclusion Table

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY matnr matnr Material
KEY werks werks_d Plant
KEY atinn atinn Internal char.
no_type_match xfeld Checkbox
no_serial_no xfeld Checkbox
change_timestmp timestamp Time Stamp

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.

-- Characteristics That Are Excluded for Type Matching
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CABN_EXCL (
    MANDT,            -- Client [mandt]
    MATNR,            -- Material [matnr]
    WERKS,            -- Plant [werks_d]
    ATINN,            -- Internal char. [atinn]
    NO_TYPE_MATCH,    -- Checkbox [xfeld]
    NO_SERIAL_NO,     -- Checkbox [xfeld]
    CHANGE_TIMESTMP,  -- Time Stamp [timestamp]
    PRIMARY KEY (MANDT, MATNR, WERKS, ATINN)
);