F_Mmim_Matgrp_Ele

DDL: F_MMIM_MATGRP_ELE SQL: FMMIMMATGRPELE Type: view

Help-View Material by material group

F_Mmim_Matgrp_Ele is a CDS View that provides data about "Help-View Material by material group" in SAP S/4HANA. It reads from 2 data sources (mara, matdoc) and exposes 2 fields with key field MaterialGroup. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
mara mara inner
matdoc matdoc from

Associations (1)

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

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName FMMIMMATGRPELE view
EndUserText.label Help-View Material by material group view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup matkl Product Sold Group
_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 F_Mmim_Matgrp_Ele.
-- 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: FMMIMMATGRPELE

CREATE VIEW F_Mmim_Matgrp_Ele AS
SELECT
  matkl AS MaterialGroup
FROM matdoc
INNER JOIN mara ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MaterialGroup AS _MaterialGroup ON MaterialGroup = _MaterialGroup.MaterialGroup  -- association [0..1]
;