PKEK

Transparent Table Application Table

Error Log for Kanban (Event-Driven KANBAN)

PKEK is an SAP database table in S/4HANA. Error Log for Kanban (Event-Driven KANBAN). It contains 15 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_KanbanContainerError view from BASIC Errors for Kanban Control Cycle Item
I_KanbanCtnEventDrivenErrorLog view from BASIC Kanban Container Event Driven Error Log

Fields (15)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY pkkey PKKEY Kanban ID
pknum PKNUM Control Cycle
pkpos PKPOS Kanban Item
saedt SAEDT Change Date
saeuz SAEUZ Change Time
msgid ARBGB Area
msgty MSGTY Message Type
msgnr MSGNR Message
msgv1 MSGV1 Message var.
msgv2 MSGV2 Message var.
msgv3 MSGV3 Message var.
msgv4 MSGV4 Message var.
sfgsv SFGSV Status from
sfgsn SFGSN Status to

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.

-- Error Log for Kanban (Event-Driven KANBAN)
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PKEK (
    MANDT,  -- Client [MANDT]
    PKKEY,  -- Kanban ID [PKKEY]
    PKNUM,  -- Control Cycle [PKNUM]
    PKPOS,  -- Kanban Item [PKPOS]
    SAEDT,  -- Change Date [SAEDT]
    SAEUZ,  -- Change Time [SAEUZ]
    MSGID,  -- Area [ARBGB]
    MSGTY,  -- Message Type [MSGTY]
    MSGNR,  -- Message [MSGNR]
    MSGV1,  -- Message var. [MSGV1]
    MSGV2,  -- Message var. [MSGV2]
    MSGV3,  -- Message var. [MSGV3]
    MSGV4,  -- Message var. [MSGV4]
    SFGSV,  -- Status from [SFGSV]
    SFGSN,  -- Status to [SFGSN]
    PRIMARY KEY (MANDT, PKKEY)
);