F_Mmim_Mattyp_Ele

DDL: F_MMIM_MATTYP_ELE SQL: FMMIMMATTYPELE Type: view

Help-View Material by material Type

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

Data Sources (2)

SourceAliasJoin Type
mara mara inner
matdoc matdoc from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialType _MaterialType $projection.MaterialType = _MaterialType.MaterialType

Annotations (9)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaterialType mtart Product Type
_MaterialType _MaterialType

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_Mattyp_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: FMMIMMATTYPELE

CREATE VIEW F_Mmim_Mattyp_Ele AS
SELECT
  mtart AS MaterialType
FROM matdoc
INNER JOIN mara ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MaterialType AS _MaterialType ON MaterialType = _MaterialType.MaterialType  -- association [0..1]
;