FIKZC_MATGROUP

Transparent Table Customizing Table

Maintain Additional Material Group Classification

FIKZC_MATGROUP is an SAP database table in S/4HANA. Maintain Additional Material Group Classification. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_KZ_MaterialGroupClassfctn view from BASIC Material group

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY matkl matkl Material Group
subgroup fikz_matsubgr Subgroup
activity fikz_vatactivity VAT Activity

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.

-- Maintain Additional Material Group Classification
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FIKZC_MATGROUP (
    MANDT,     -- Client [mandt]
    MATKL,     -- Material Group [matkl]
    SUBGROUP,  -- Subgroup [fikz_matsubgr]
    ACTIVITY,  -- VAT Activity [fikz_vatactivity]
    PRIMARY KEY (MANDT, MATKL)
);