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)
);