I_MaterialGroup

DDL: I_MATERIALGROUP Type: view BASIC

Material Group

I_MaterialGroup is a Basic CDS View (Dimension) that provides data about "Material Group" in SAP S/4HANA. It reads from 1 data source (t023) and exposes 3 fields with key field MaterialGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t023 t023 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialGroupText _Text $projection.MaterialGroup = _Text.MaterialGroup

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IMATGROUP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Group view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP 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
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup
MaterialAuthorizationGroup t023 begru AuthorizGroup
_Text _Text

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_MaterialGroup.
-- 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_MaterialGroup AS
SELECT
  cast(t023.matkl as productgroup preserving type ) AS MaterialGroup,
  t023.begru AS MaterialAuthorizationGroup
FROM t023
LEFT OUTER JOIN I_MaterialGroupText AS _Text ON MaterialGroup = _Text.MaterialGroup  -- association [0..*]
;