FARR_D_CATCHUP

Transparent Table Application Table

Revenue Catch-up

FARR_D_CATCHUP is an SAP database table in S/4HANA. Revenue Catch-up. It contains 11 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_PerfOblgnRevenueCatchUp view from BASIC Perf Oblgn Revenue Catch-Up

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY company_code bukrs Company Code
KEY acct_principle accounting_principle Accounting Principle
KEY pob_id farr_pob_id POB
KEY fiscal_year farr_fiscal_year Fiscal Year
KEY period farr_period Posting Period
KEY fiscal_quarter farr_quarter Fiscal Quarter
rev_catchup_quarter_delta farr_defitem_rev_amt_catchup Catchup Amount
rev_catchup_year_delta farr_defitem_rev_amt_catchup Catchup Amount
amount_curk waers Currency
timestamp timestamp Time Stamp

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.

-- Revenue Catch-up
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FARR_D_CATCHUP (
    CLIENT,                     -- Client [mandt]
    COMPANY_CODE,               -- Company Code [bukrs]
    ACCT_PRINCIPLE,             -- Accounting Principle [accounting_principle]
    POB_ID,                     -- POB [farr_pob_id]
    FISCAL_YEAR,                -- Fiscal Year [farr_fiscal_year]
    PERIOD,                     -- Posting Period [farr_period]
    FISCAL_QUARTER,             -- Fiscal Quarter [farr_quarter]
    REV_CATCHUP_QUARTER_DELTA,  -- Catchup Amount [farr_defitem_rev_amt_catchup]
    REV_CATCHUP_YEAR_DELTA,     -- Catchup Amount [farr_defitem_rev_amt_catchup]
    AMOUNT_CURK,                -- Currency [waers]
    TIMESTAMP,                  -- Time Stamp [timestamp]
    PRIMARY KEY (CLIENT, COMPANY_CODE, ACCT_PRINCIPLE, POB_ID, FISCAL_YEAR, PERIOD, FISCAL_QUARTER)
);