I_IN_MatlTypeClassfctn

DDL: I_IN_MATLTYPECLASSFCTN Type: view_entity BASIC Package: J1I_GST_LOG_APP

Configure Material Type Classification

I_IN_MatlTypeClassfctn is a Basic CDS View that provides data about "Configure Material Type Classification" in SAP S/4HANA. It reads from 1 data source (j_1ig_matltpclfn) and exposes 6 fields with key fields Material, Plant. It has 2 associations to related views. Part of development package J1I_GST_LOG_APP.

Data Sources (1)

SourceAliasJoin Type
j_1ig_matltpclfn j_1ig_matltpclfn from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Material _Material $projection.Material = _Material.Material
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Configure Material Type Classification view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
KEY Plant werks Receiving Plant
IN_MaterialTypeClassification matltpclfn
IN_MaterialClassification matlclfn
_Material _Material
_Plant _Plant

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_IN_MatlTypeClassfctn.
-- 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_IN_MatlTypeClassfctn AS
SELECT
  matnr AS Material,
  werks AS Plant,
  matltpclfn AS IN_MaterialTypeClassification,
  matlclfn AS IN_MaterialClassification
FROM j_1ig_matltpclfn
LEFT OUTER JOIN I_Material AS _Material ON Material = _Material.Material  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;