/RPM/FIN_GROUPS

Transparent Table Customizing Table

Financial Groups

/RPM/FIN_GROUPS is an SAP database table in S/4HANA. Financial Groups. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_PrjPrtfloFinancialGroup view_entity from BASIC Project Portfolio Financial Groups

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY category /RPM/TV_FIN_CATG Financial Category
KEY group_id /RPM/TV_FIN_GRP Financial Group
sequence /RPM/SEQUENCE Sequence

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.

-- Financial Groups
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /RPM/FIN_GROUPS (
    CLIENT,    -- Client [MANDT]
    CATEGORY,  -- Financial Category [/RPM/TV_FIN_CATG]
    GROUP_ID,  -- Financial Group [/RPM/TV_FIN_GRP]
    SEQUENCE,  -- Sequence [/RPM/SEQUENCE]
    PRIMARY KEY (CLIENT, CATEGORY, GROUP_ID)
);