QPCD

Transparent Table Customizing Table

Inspection catalog codes

QPCD is an SAP database table in S/4HANA. Inspection catalog codes. It contains 16 fields. 16 CDS views read from this table.

CDS Views using this table (16)

ViewTypeJoinVDMDescription
I_CharcAttributeCode view from BASIC Characteristic Attribute Code
I_ConfigurableCodesCode view_entity from BASIC Code of Configurable Codes
I_DefectCauseCode view from BASIC Defect Cause Code
I_DefectCode view from BASIC Defect Code
I_DefectLocationCode view from BASIC Defect Location Code
I_InspectionCode view from BASIC Inspection Code
I_MaintNotifCauseCode view from BASIC Inspection Code
I_MfgActionReasonCode view from BASIC Reason Code
I_NotifActivityCode view from BASIC Notification Activity Code
I_NotifCauseCode view from BASIC Notification Cause Code
I_NotificationCode view from BASIC Notification Code
I_QltyTskCode view from BASIC Quality Task Code
I_RetMatlInspResultCode view from BASIC Return Material Inspection Result Code
I_ReturnsInspectionCode view_entity from BASIC Returns Inspection Code
I_UsageDecisionCode view from BASIC Usage Decision Code
I_UsgeDcsnSelectedSetCode view inner BASIC Usage Decision Code in Selected Set

Fields (16)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY katalogart qkatart Catalog
KEY codegruppe qcodegrp Code Group
KEY code qcode Code
KEY version qversnr Version
gueltigab datuv Valid From
fehlklasse qfehlklas Defect Class
ersteller qersteller Created By
e_datum qdatumerst Created On
aenderer qaenderer Changed By
a_datum qdatumaend Changed On
inaktiv qinak Record inactive
verwendung qverw Record Used
geloescht qgel Deleted record
folgeakti qfolgeakti Follow-Up Actn
code4actionbox_rel qcode4actionbox_rel Follow-Up Relevance

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.

-- Inspection catalog codes
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE QPCD (
    MANDT,               -- Client [mandt]
    KATALOGART,          -- Catalog [qkatart]
    CODEGRUPPE,          -- Code Group [qcodegrp]
    CODE,                -- Code [qcode]
    VERSION,             -- Version [qversnr]
    GUELTIGAB,           -- Valid From [datuv]
    FEHLKLASSE,          -- Defect Class [qfehlklas]
    ERSTELLER,           -- Created By [qersteller]
    E_DATUM,             -- Created On [qdatumerst]
    AENDERER,            -- Changed By [qaenderer]
    A_DATUM,             -- Changed On [qdatumaend]
    INAKTIV,             -- Record inactive [qinak]
    VERWENDUNG,          -- Record Used [qverw]
    GELOESCHT,           -- Deleted record [qgel]
    FOLGEAKTI,           -- Follow-Up Actn [qfolgeakti]
    CODE4ACTIONBOX_REL,  -- Follow-Up Relevance [qcode4actionbox_rel]
    PRIMARY KEY (MANDT, KATALOGART, CODEGRUPPE, CODE, VERSION)
);