FCOT_EB_LOG

Transparent Table Application Table

Event-Based Log Worklist

FCOT_EB_LOG is an SAP database table in S/4HANA. Event-Based Log Worklist. It contains 19 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
FCO_COST_EST_KEKO_VBAP_SDM view left_outer
P_EvtBsdLogWorklist view from BASIC
P_EvtBsdOverheadErrorData view_entity from BASIC Event-Based overhead errors log data

Fields (19)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY log_id fco_eb_log_id Log UUID
log_type fco_eb_log_type Event-Based Log Type
ref_process fco_eb_ref_process Event-Based Reference Process
object_type fco_eb_object_type Event-Based Object Type
bus_transac_cat fco_eb_log_err_cat Event-Based Error Category
order_id aufnr Order
order_item co_posnr Item Number
sales_doc vbeln_va Sales Document
sales_doc_item posnr_va Item
ledger fins_ledger Ledger
company_code bukrs Company Code
plant werks_d Plant
product productnumber Product
simulation_status fco_simln_sts Simulation Status
appl_lognumber balognr Log Number
created_date erdat Created On
created_time fco_created_time Creation Time
created_by fco_created_by Created By

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.

-- Event-Based Log Worklist
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FCOT_EB_LOG (
    CLIENT,             -- Client [mandt]
    LOG_ID,             -- Log UUID [fco_eb_log_id]
    LOG_TYPE,           -- Event-Based Log Type [fco_eb_log_type]
    REF_PROCESS,        -- Event-Based Reference Process [fco_eb_ref_process]
    OBJECT_TYPE,        -- Event-Based Object Type [fco_eb_object_type]
    BUS_TRANSAC_CAT,    -- Event-Based Error Category [fco_eb_log_err_cat]
    ORDER_ID,           -- Order [aufnr]
    ORDER_ITEM,         -- Item Number [co_posnr]
    SALES_DOC,          -- Sales Document [vbeln_va]
    SALES_DOC_ITEM,     -- Item [posnr_va]
    LEDGER,             -- Ledger [fins_ledger]
    COMPANY_CODE,       -- Company Code [bukrs]
    PLANT,              -- Plant [werks_d]
    PRODUCT,            -- Product [productnumber]
    SIMULATION_STATUS,  -- Simulation Status [fco_simln_sts]
    APPL_LOGNUMBER,     -- Log Number [balognr]
    CREATED_DATE,       -- Created On [erdat]
    CREATED_TIME,       -- Creation Time [fco_created_time]
    CREATED_BY,         -- Created By [fco_created_by]
    PRIMARY KEY (CLIENT, LOG_ID)
);