I_MaterialType

DDL: I_MATERIALTYPE Type: view BASIC

Material Type

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

Data Sources (1)

SourceAliasJoin Type
t134 t134 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialTypeText _Text $projection.MaterialType = _Text.MaterialType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMATTYPE view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
EndUserText.label Material Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey MaterialType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialType t134 mtart Product Type
AuthorizationGroup t134 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_MaterialType.
-- 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_MaterialType AS
SELECT
  t134.mtart AS MaterialType,
  t134.begru AS AuthorizationGroup
FROM t134
LEFT OUTER JOIN I_MaterialTypeText AS _Text ON MaterialType = _Text.MaterialType  -- association [0..*]
;