C_ProdnVersMatlPlntVH

DDL: C_PRODNVERSMATLPLNTVH SQL: CPVMATLPLNTVH Type: view CONSUMPTION

Material Plant Value Help

C_ProdnVersMatlPlntVH is a Consumption CDS View that provides data about "Material Plant Value Help" in SAP S/4HANA. It reads from 1 data source (I_MaterialPlant) and exposes 6 fields with key fields Material, Plant. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_MaterialPlant I_MaterialPlant from

Associations (3)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPVMATLPLNTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Material Plant Value Help view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material I_MaterialPlant Material Vehicle Model
KEY Plant I_MaterialPlant Plant Valuation Area
_Material _Material
_MaterialText _MaterialText
PlantName _Plant PlantName Plant Name
_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 C_ProdnVersMatlPlntVH.
-- 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: CPVMATLPLNTVH

CREATE VIEW C_ProdnVersMatlPlntVH AS
SELECT
  I_MaterialPlant.Material AS Material,
  I_MaterialPlant.Plant AS Plant,
  _Plant.PlantName AS PlantName
FROM I_MaterialPlant
LEFT OUTER JOIN I_Material AS _Material ON Material = _Material.Material  -- association [0..1]
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material  -- association [0..*]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;