/RPM/FIN_DISPLAY

Transparent Table Customizing Table

Category/group table

/RPM/FIN_DISPLAY is an SAP database table in S/4HANA. Category/group table. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_PrjPrtfloFinCategoryGroup view_entity from BASIC Project Portfolio Fin Plan to Category

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY fin_view /RPM/TV_FIN_VIEW Fin View Type
KEY category /RPM/TV_FIN_CATG Financial Category
KEY group_id /RPM/TV_FIN_GRP Financial Group

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.

-- Category/group table
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /RPM/FIN_DISPLAY (
    CLIENT,    -- Client [MANDT]
    FIN_VIEW,  -- Fin View Type [/RPM/TV_FIN_VIEW]
    CATEGORY,  -- Financial Category [/RPM/TV_FIN_CATG]
    GROUP_ID,  -- Financial Group [/RPM/TV_FIN_GRP]
    PRIMARY KEY (CLIENT, FIN_VIEW, CATEGORY, GROUP_ID)
);