BKDF

Transparent Table Application Table

Document Header Supplement for Recurring Entry

BKDF is an SAP database table in S/4HANA. Document Header Supplement for Recurring Entry. It contains 28 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
FACVD_RJET_WLI_02 view from Recurring entries data enriched with data from bseg
I_RecrrgAcctgDocHdrForChgDoc view from BASIC Recurring Accounting Doc. Header for binding to Change Doc.
I_RecurringJournalEntry view from BASIC Recurring Journal Entry

Fields (28)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY bukrs BUKRS Company Code
KEY belnr BELNR_D Document Number
KEY gjahr GJAHR Fiscal Year
dbmon DBMON Interval (Mths)
dbtag DBTAG Run Date
dbbdt DBBDT First Run
dbatr DBATR Next Run
dbedt DBEDT Last Run
xdelt XDELT Deletion Ind.
dbzhl DBZHL Number of Runs
dbakz DBAKZ_T054 Run Schedule
xfwhw XFWHW_BKDF Transf.LC Amts
xsfhw XSFHW_BKDF Tax Amts Also in LC
xbllt XBLLT Copy Texts
recurrence_type FAC_RJET_RECURRENCE_TYPE Recurrence Pattern
frequency FAC_RJET_FREQUENCY Every
occur_day_type FAC_RJET_OCCUR_DAY_TYPE On
occur_day FAC_RJET_OCCUR_DAY Occurrence Day
first_occur_date FAC_RJET_FIRST_OCCUR_DATE Start Date
end_by_type FAC_RJET_END_BY_TYPE End
last_occur_date FAC_RJET_LAST_OCCUR_DATE End Date
number_of_occur FAC_RJET_NUMBER_OF_OCCUR Occurrence(s)
blocked_for_posting FAC_RJET_BLOCKED_FOR_POSTING Blocked for Posting
recur_schedule_used FAC_RJET_RECUR_SCHEDULE_USED Use Posting Schedule
created_in_sfin FAC_RJET_CREATED_IN_SFIN Created By Fiori App
lognumber FAC_BALOGNR Log Number
sfin_mig_status FAC_RJET_SFIN_MIGRATION_STATUS Migrtd to Fiori App

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.

-- Document Header Supplement for Recurring Entry
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BKDF (
    MANDT,                -- Client [MANDT]
    BUKRS,                -- Company Code [BUKRS]
    BELNR,                -- Document Number [BELNR_D]
    GJAHR,                -- Fiscal Year [GJAHR]
    DBMON,                -- Interval (Mths) [DBMON]
    DBTAG,                -- Run Date [DBTAG]
    DBBDT,                -- First Run [DBBDT]
    DBATR,                -- Next Run [DBATR]
    DBEDT,                -- Last Run [DBEDT]
    XDELT,                -- Deletion Ind. [XDELT]
    DBZHL,                -- Number of Runs [DBZHL]
    DBAKZ,                -- Run Schedule [DBAKZ_T054]
    XFWHW,                -- Transf.LC Amts [XFWHW_BKDF]
    XSFHW,                -- Tax Amts Also in LC [XSFHW_BKDF]
    XBLLT,                -- Copy Texts [XBLLT]
    RECURRENCE_TYPE,      -- Recurrence Pattern [FAC_RJET_RECURRENCE_TYPE]
    FREQUENCY,            -- Every [FAC_RJET_FREQUENCY]
    OCCUR_DAY_TYPE,       -- On [FAC_RJET_OCCUR_DAY_TYPE]
    OCCUR_DAY,            -- Occurrence Day [FAC_RJET_OCCUR_DAY]
    FIRST_OCCUR_DATE,     -- Start Date [FAC_RJET_FIRST_OCCUR_DATE]
    END_BY_TYPE,          -- End [FAC_RJET_END_BY_TYPE]
    LAST_OCCUR_DATE,      -- End Date [FAC_RJET_LAST_OCCUR_DATE]
    NUMBER_OF_OCCUR,      -- Occurrence(s) [FAC_RJET_NUMBER_OF_OCCUR]
    BLOCKED_FOR_POSTING,  -- Blocked for Posting [FAC_RJET_BLOCKED_FOR_POSTING]
    RECUR_SCHEDULE_USED,  -- Use Posting Schedule [FAC_RJET_RECUR_SCHEDULE_USED]
    CREATED_IN_SFIN,      -- Created By Fiori App [FAC_RJET_CREATED_IN_SFIN]
    LOGNUMBER,            -- Log Number [FAC_BALOGNR]
    SFIN_MIG_STATUS,      -- Migrtd to Fiori App [FAC_RJET_SFIN_MIGRATION_STATUS]
    PRIMARY KEY (MANDT, BUKRS, BELNR, GJAHR)
);