FINCS_RIASSGMT

Transparent Table Customizing Table

Assignment for Reporting Item

FINCS_RIASSGMT is an SAP database table in S/4HANA. Assignment for Reporting Item. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CnsldtnRptgItemAssgmt view from BASIC Consolidation Reporting Item Assignment

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY itclg FC_ITCLG Cons. COA
KEY rihry FINCS_RIHRY Reporting Item Hierarchy
KEY ritem FINCS_RITEM Reporting Item
KEY seqnr FINCS_RISEQNR Seq. Number
item_fr FINCS_ITEM_FR FS Item From
item_to FINCS_ITEM_TO FS Item To
sityp FC_SITYP Subitem Category
sitem_fr FINCS_SITEM_FR Subitem From
sitem_to FINCS_SITEM_TO Subitem To
revsign FINCS_REVSIGN Reverse Sign (X)
deletion_flag FINCS_DEL_FLAG Deletion Flag

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.

-- Assignment for Reporting Item
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FINCS_RIASSGMT (
    MANDT,          -- Client [MANDT]
    ITCLG,          -- Cons. COA [FC_ITCLG]
    RIHRY,          -- Reporting Item Hierarchy [FINCS_RIHRY]
    RITEM,          -- Reporting Item [FINCS_RITEM]
    SEQNR,          -- Seq. Number [FINCS_RISEQNR]
    ITEM_FR,        -- FS Item From [FINCS_ITEM_FR]
    ITEM_TO,        -- FS Item To [FINCS_ITEM_TO]
    SITYP,          -- Subitem Category [FC_SITYP]
    SITEM_FR,       -- Subitem From [FINCS_SITEM_FR]
    SITEM_TO,       -- Subitem To [FINCS_SITEM_TO]
    REVSIGN,        -- Reverse Sign (X) [FINCS_REVSIGN]
    DELETION_FLAG,  -- Deletion Flag [FINCS_DEL_FLAG]
    PRIMARY KEY (MANDT, ITCLG, RIHRY, RITEM, SEQNR)
);