I_SchemaGroupHelp

DDL: I_SCHEMAGROUPHELP SQL: ISCHEMAGROUPHELP Type: view BASIC Package: VDM_MD_BP

Schema group Value Help

I_SchemaGroupHelp is a Basic CDS View (Dimension) that provides data about "Schema group Value Help" in SAP S/4HANA. It reads from 1 data source (tmkkt) and exposes 3 fields with key fields SchemaGroup, Language. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
tmkkt tmkkt from

Annotations (10)

NameValueLevelField
ObjectModel.representativeKey SchemaGroup view
EndUserText.label Schema group Value Help view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISCHEMAGROUPHELP view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SchemaGroup tmkkt kalsk Schema Grp Supp
KEY Language tmkkt spras Off. Language
SchemaGroupDescription tmkkt kalsb Description

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SchemaGroupHelp.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISCHEMAGROUPHELP

CREATE VIEW I_SchemaGroupHelp AS
SELECT
  tmkkt.kalsk AS SchemaGroup,
  tmkkt.spras AS Language,
  tmkkt.kalsb AS SchemaGroupDescription
FROM tmkkt
;