FIRUC_CF_ACCOUNT

Transparent Table Customizing Table

Cash Flow Statement Item Details

FIRUC_CF_ACCOUNT is an SAP database table in S/4HANA. Cash Flow Statement Item Details. It contains 8 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
P_RU_FinancialStatementAccCF view from BASIC
P_RU_FinSatementItemAccountsCF view from BASIC
P_RU_FinStmntCashFlowAccount view from BASIC

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY line num06 Number
KEY item firu_cf_item Item
KEY version firu_cf_version Version
account_type firu_cf_account_type Account Type
account_from vonkt_f02e From Account Number
account_to biskt_f02e Up to Account No.
account_exclude firu_cf_account_exclude Exclude

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.

-- Cash Flow Statement Item Details
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FIRUC_CF_ACCOUNT (
    MANDT,            -- Client [mandt]
    LINE,             -- Number [num06]
    ITEM,             -- Item [firu_cf_item]
    VERSION,          -- Version [firu_cf_version]
    ACCOUNT_TYPE,     -- Account Type [firu_cf_account_type]
    ACCOUNT_FROM,     -- From Account Number [vonkt_f02e]
    ACCOUNT_TO,       -- Up to Account No. [biskt_f02e]
    ACCOUNT_EXCLUDE,  -- Exclude [firu_cf_account_exclude]
    PRIMARY KEY (MANDT, LINE, ITEM, VERSION)
);