FINCS_LOG_ITEM

Transparent Table Application Table

Consolidation Generic Log Item

FINCS_LOG_ITEM is an SAP database table in S/4HANA. Consolidation Generic Log Item. It contains 3 fields. 8 CDS views read from this table.

CDS Views using this table (8)

ViewTypeJoinVDMDescription
E_CnsldtnTaskLogItem view_entity from EXTENSION Extension view for jour. entry task log
E_CnsldtnTskLogItemDataProcess view_entity from EXTENSION Cnsldtn Tsk Log Item Data Process - Extn
I_CnsldtnTaskLogItem view from BASIC Interface for FINCS_LOG_ITEM
I_CnsldtnTskLogItemDataProcess view_entity from BASIC Consolidation Task Log Item Data Process
P_CT_LOG_DETAIL view from BASIC P_CT_LOG_DETAIL
P_GEN_LOG_DETAIL view from BASIC Generic log Detail
P_LOG_CT_Header view left_outer BASIC Task log CT header
P_LOG_RE_Header view left_outer BASIC Task log RE header

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY cnsldtnlognumber fincs_lognumber Consolidation Log GUID
KEY cnsldtnlogitemnumber fincs_logitemnumber Consolidation Log Item Number GUID

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.

-- Consolidation Generic Log Item
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FINCS_LOG_ITEM (
    MANDT,                 -- Client [mandt]
    CNSLDTNLOGNUMBER,      -- Consolidation Log GUID [fincs_lognumber]
    CNSLDTNLOGITEMNUMBER,  -- Consolidation Log Item Number GUID [fincs_logitemnumber]
    PRIMARY KEY (MANDT, CNSLDTNLOGNUMBER, CNSLDTNLOGITEMNUMBER)
);