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)
);