DFKK_DOC_EXTR

Transparent Table Application Table

FI-CA Belege - Extrakten

DFKK_DOC_EXTR is an SAP database table in S/4HANA. FI-CA Belege - Extrakten. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CADocumentExtract view_entity from BASIC FICA Documents for Extracts

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY extract_id extrid_kk Extract ID
from_date sh_fdat_kk Fm PostDte
to_date sh_tdat_kk To PostDte
bukrs bukrs Company Code
waers waers Currency
system_id logsystem Logical System
finished sh_end_kk Completed
ernam sh_ernam_kk Imported By
cpudt sh_cpudt_kk Imported On

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.

-- FI-CA Belege - Extrakten
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DFKK_DOC_EXTR (
    MANDT,       -- Client [mandt]
    EXTRACT_ID,  -- Extract ID [extrid_kk]
    FROM_DATE,   -- Fm PostDte [sh_fdat_kk]
    TO_DATE,     -- To PostDte [sh_tdat_kk]
    BUKRS,       -- Company Code [bukrs]
    WAERS,       -- Currency [waers]
    SYSTEM_ID,   -- Logical System [logsystem]
    FINISHED,    -- Completed [sh_end_kk]
    ERNAM,       -- Imported By [sh_ernam_kk]
    CPUDT,       -- Imported On [sh_cpudt_kk]
    PRIMARY KEY (MANDT, EXTRACT_ID)
);