GMSPCLASSTEXTS

Transparent Table Application Table

Sponsored Class Description texts

GMSPCLASSTEXTS is an SAP database table in S/4HANA. Sponsored Class Description texts. It contains 6 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_SponsoredClassCoreText view from BASIC Sponsored Class - Text
I_SponsoredClassText view from BASIC Sponsored Class - Text

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY language spras Language
KEY sponsored_class gm_sponsored_class Sponsored Class
description gm_class_text Class Description
search_text gm_class_search Class Search
sponsoredclassname gmis_spclass_name SP Class Name

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.

-- Sponsored Class Description texts
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE GMSPCLASSTEXTS (
    CLIENT,              -- Client [mandt]
    LANGUAGE,            -- Language [spras]
    SPONSORED_CLASS,     -- Sponsored Class [gm_sponsored_class]
    DESCRIPTION,         -- Class Description [gm_class_text]
    SEARCH_TEXT,         -- Class Search [gm_class_search]
    SPONSOREDCLASSNAME,  -- SP Class Name [gmis_spclass_name]
    PRIMARY KEY (CLIENT, LANGUAGE, SPONSORED_CLASS)
);