I_MaterialGroupText

DDL: I_MATERIALGROUPTEXT Type: view BASIC

Material Group Text

I_MaterialGroupText is a Basic CDS View that provides data about "Material Group Text" in SAP S/4HANA. It reads from 1 data source (t023t) and exposes 5 fields with key fields MaterialGroup, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t023t t023t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialGroup _MaterialGroup $projection.MaterialGroup = _MaterialGroup.MaterialGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IMATGROUPTEXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Group Text view
ObjectModel.representativeKey MaterialGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup
KEY Language t023t spras Off. Language
MaterialGroupName
MaterialGroupText t023t wgbez60 Mat.Grp Desc. 2
_MaterialGroup _MaterialGroup

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_MaterialGroupText.
-- 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.

CREATE VIEW I_MaterialGroupText AS
SELECT
  cast(t023t.matkl as productgroup preserving type ) AS MaterialGroup,
  t023t.spras AS Language,
  cast(t023t.wgbez as productgroupdescription preserving type ) AS MaterialGroupName,
  t023t.wgbez60 AS MaterialGroupText
FROM t023t
LEFT OUTER JOIN I_MaterialGroup AS _MaterialGroup ON MaterialGroup = _MaterialGroup.MaterialGroup  -- association [0..1]
;