C_ProdnPlanningMaterialPlantVH

DDL: C_PRODNPLANNINGMATERIALPLANTVH Type: view_entity CONSUMPTION Package: ODATA_PP_ROUTING_API

Material and Plant

C_ProdnPlanningMaterialPlantVH is a Consumption CDS View that provides data about "Material and Plant" in SAP S/4HANA. It reads from 1 data source (I_MaterialPlant) and exposes 4 fields with key fields Material, Plant. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F5425). Part of development package ODATA_PP_ROUTING_API.

Data Sources (1)

SourceAliasJoin Type
I_MaterialPlant I_MaterialPlant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Material _Material $projection.Material = _Material.Material

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
EndUserText.label Material and Plant view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Material view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F5425 ASQL_F5425 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
_MaterialText _MaterialText
_Material _Material

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_ProdnPlanningMaterialPlantVH.
-- 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 C_ProdnPlanningMaterialPlantVH AS
SELECT
  Material,
  Plant
FROM I_MaterialPlant
LEFT OUTER JOIN I_Material AS _Material ON Material = _Material.Material  -- association [1..1]
;