QMFE_AFFCTD_OBJ

Transparent Table Application Table

Object Affected by Defect

QMFE_AFFCTD_OBJ is an SAP database table in S/4HANA. Object Affected by Defect. It contains 9 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
E_DefectAffectedObject view from EXTENSION Defect Affected Object Extension
I_DefectAffectedObject view from BASIC Object Affected by Defect
I_NotifItemAffectedObject view from BASIC Object Affected by Notification Item

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY qmnum qmnum Notification
KEY fenum felfd Item
KEY objcounter qfaffcdobjcntr Affected Object Counter (#)
objtype qfaffcdobjtype Affected Object Type
material matnr Material
quantity qfaffcdquantity Quantity
quantityunit qfaffcdquantityunit Unit of Measure
batch charg_d Batch

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.

-- Object Affected by Defect
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE QMFE_AFFCTD_OBJ (
    CLIENT,        -- Client [mandt]
    QMNUM,         -- Notification [qmnum]
    FENUM,         -- Item [felfd]
    OBJCOUNTER,    -- Affected Object Counter (#) [qfaffcdobjcntr]
    OBJTYPE,       -- Affected Object Type [qfaffcdobjtype]
    MATERIAL,      -- Material [matnr]
    QUANTITY,      -- Quantity [qfaffcdquantity]
    QUANTITYUNIT,  -- Unit of Measure [qfaffcdquantityunit]
    BATCH,         -- Batch [charg_d]
    PRIMARY KEY (CLIENT, QMNUM, FENUM, OBJCOUNTER)
);