GMGRCOSTSHARE

Transparent Table Application Table

Cost sharing master data

GMGRCOSTSHARE is an SAP database table in S/4HANA. Cost sharing master data. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_GrantCostSharingLink view from BASIC Cost Sharing for the Grant

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY grant_nbr GM_GRANT_NBR Grant
KEY fm_area FIKRS FM Area
KEY fund BP_GEBER Fund
KEY sponsored_prog GM_SPONSORED_PROG Sponsored Program
KEY sponsored_class GM_SPONSORED_CLASS Sponsored Class
KEY cost_share_src GM_COST_SHARE_SOURCE Cost Share Source
cost_share_type GM_COST_SHARE_TYPE Cost Shar. Type
percentage GM_COST_SHARE_PERCENTAGE Cost Sharing Percent

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.

-- Cost sharing master data
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE GMGRCOSTSHARE (
    CLIENT,           -- Client [MANDT]
    GRANT_NBR,        -- Grant [GM_GRANT_NBR]
    FM_AREA,          -- FM Area [FIKRS]
    FUND,             -- Fund [BP_GEBER]
    SPONSORED_PROG,   -- Sponsored Program [GM_SPONSORED_PROG]
    SPONSORED_CLASS,  -- Sponsored Class [GM_SPONSORED_CLASS]
    COST_SHARE_SRC,   -- Cost Share Source [GM_COST_SHARE_SOURCE]
    COST_SHARE_TYPE,  -- Cost Shar. Type [GM_COST_SHARE_TYPE]
    PERCENTAGE,       -- Cost Sharing Percent [GM_COST_SHARE_PERCENTAGE]
    PRIMARY KEY (CLIENT, GRANT_NBR, FM_AREA, FUND, SPONSORED_PROG, SPONSORED_CLASS, COST_SHARE_SRC)
);