COMD

Transparent Table Application Table

Process Management: Error Log for Message Destination

COMD is an SAP database table in S/4HANA. Process Management: Error Log for Message Destination. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ProcessMessageDestination view_entity from BASIC Process Message Destination

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY msid CO_MSID Process Message
KEY csdes CO_CSDES Destination
errkz CO_ERRKZ Processg Status
snglp CO_SNGPR Indiv. Proc.

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.

-- Process Management: Error Log for Message Destination
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE COMD (
    MANDT,  -- Client [MANDT]
    MSID,   -- Process Message [CO_MSID]
    CSDES,  -- Destination [CO_CSDES]
    ERRKZ,  -- Processg Status [CO_ERRKZ]
    SNGLP,  -- Indiv. Proc. [CO_SNGPR]
    PRIMARY KEY (MANDT, MSID, CSDES)
);