ACDOCU_STAGING

Transparent Table Application Table

store data that are selected from ACDOCU

ACDOCU_STAGING is an SAP database table in S/4HANA. store data that are selected from ACDOCU. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_CnsldtnPostingRuleLogltem view_entity from COMPOSITE Consolidation Posting Rule Log Items

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY rclnt mandt Client
KEY ryear gjahr Fiscal Year
KEY runreference fincs_runreference RunReference
KEY runid fincs_runid RunID
KEY row_number fincs_rt_row_number

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.

-- store data that are selected from ACDOCU
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ACDOCU_STAGING (
    RCLNT,         -- Client [mandt]
    RYEAR,         -- Fiscal Year [gjahr]
    RUNREFERENCE,  -- RunReference [fincs_runreference]
    RUNID,         -- RunID [fincs_runid]
    ROW_NUMBER,    -- fincs_rt_row_number
    PRIMARY KEY (RCLNT, RYEAR, RUNREFERENCE, RUNID, ROW_NUMBER)
);