I_MaterialGroupPackMaterials

DDL: I_MATERIALGROUPPACKMATERIALS Type: view BASIC

Material Group for Packaging Materials

I_MaterialGroupPackMaterials is a Basic CDS View that provides data about "Material Group for Packaging Materials" in SAP S/4HANA. It reads from 1 data source (tvegr) and exposes 2 fields with key field MaterialGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tvegr tvegr from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMATGRPPACKMAT view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Material Group for Packaging Materials view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey MaterialGroup view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.compositionRoot true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup Matl Grp Pckmat
_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_MaterialGroupPackMaterials.
-- 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_MaterialGroupPackMaterials AS
SELECT
  cast( magrv as matkl ) AS MaterialGroup
FROM tvegr
LEFT OUTER JOIN I_MaterialGroupPackMatText AS _Text ON MaterialGroup = _Text.MaterialGroup  -- association [0..*]
;