GMGSPPROGRAM

Transparent Table Application Table

Grant specific sponsored program details

GMGSPPROGRAM is an SAP database table in S/4HANA. Grant specific sponsored program details. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_GrantSponsoredProgramsLink view from BASIC Grant Specific Sponsored Program Details

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY grant_nbr gm_grant_nbr Grant
KEY sponsored_prog gm_sponsored_prog Sponsored Program

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.

-- Grant specific sponsored program details
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE GMGSPPROGRAM (
    CLIENT,          -- Client [mandt]
    GRANT_NBR,       -- Grant [gm_grant_nbr]
    SPONSORED_PROG,  -- Sponsored Program [gm_sponsored_prog]
    PRIMARY KEY (CLIENT, GRANT_NBR, SPONSORED_PROG)
);