FLOG_CTNITM_LOG

Transparent Table Application Table

Field logistic container item last processing information

FLOG_CTNITM_LOG is an SAP database table in S/4HANA. Field logistic container item last processing information. It contains 15 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_FldLogsCtnItmLogBasic view from BASIC FL Container Item Last Processing Info

Fields (15)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY cont_id FLOG_CONTID Container ID
KEY dispatchdat FLOG_DISPDAT Dispatch Date
KEY dispatch_loc WERKS_D Plant
KEY cont_tripcnt FLOG_TRIPCNT Trip Counter
KEY ref_doc FLOG_DOC Reference Doc Number
message_id SYMSGID Message Class
message_no SYMSGNO Message Number
message_type BAPI_MTYPE Message type
message BAPI_MSG Message Text
fldlogspostprocessingmessage BAPI_MSG Message Text
activity FLOG_ACTIVITY Action
quk_action FLOG_QK_ACTION Handling Decision
changed_at TIMESTAMP Time Stamp
del_flag FLOG_DELETE Delete

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.

-- Field logistic container item last processing information
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FLOG_CTNITM_LOG (
    MANDT,                         -- Client [MANDT]
    CONT_ID,                       -- Container ID [FLOG_CONTID]
    DISPATCHDAT,                   -- Dispatch Date [FLOG_DISPDAT]
    DISPATCH_LOC,                  -- Plant [WERKS_D]
    CONT_TRIPCNT,                  -- Trip Counter [FLOG_TRIPCNT]
    REF_DOC,                       -- Reference Doc Number [FLOG_DOC]
    MESSAGE_ID,                    -- Message Class [SYMSGID]
    MESSAGE_NO,                    -- Message Number [SYMSGNO]
    MESSAGE_TYPE,                  -- Message type [BAPI_MTYPE]
    MESSAGE,                       -- Message Text [BAPI_MSG]
    FLDLOGSPOSTPROCESSINGMESSAGE,  -- Message Text [BAPI_MSG]
    ACTIVITY,                      -- Action [FLOG_ACTIVITY]
    QUK_ACTION,                    -- Handling Decision [FLOG_QK_ACTION]
    CHANGED_AT,                    -- Time Stamp [TIMESTAMP]
    DEL_FLAG,                      -- Delete [FLOG_DELETE]
    PRIMARY KEY (MANDT, CONT_ID, DISPATCHDAT, DISPATCH_LOC, CONT_TRIPCNT, REF_DOC)
);