C_SchedProdnProductVH

DDL: C_SCHEDPRODNPRODUCTVH SQL: CSHPDPRODVH Type: view CONSUMPTION

VH - Product

C_SchedProdnProductVH is a Consumption CDS View that provides data about "VH - Product" in SAP S/4HANA. It reads from 2 data sources (I_ProductPlant, I_SDMAreaOfResponsibility) and exposes 3 fields with key fields Product, Plant. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_ProductPlant _MaterialVH from
I_SDMAreaOfResponsibility _SDMAreaOfResponsibility inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductDescription _Text $projection.Product = _Text.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSHPDPRODVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label VH - Product view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Product I_ProductPlant Product Product
KEY Plant I_ProductPlant Plant Valuation Area
ProductDescription Product Description

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_SchedProdnProductVH.
-- 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: CSHPDPRODVH

CREATE VIEW C_SchedProdnProductVH AS
SELECT
  _MaterialVH.Product AS Product,
  _MaterialVH.Plant AS Plant,
  _Text[1:Language=$session.system_language].ProductDescription AS ProductDescription
FROM I_ProductPlant AS _MaterialVH
INNER JOIN I_SDMAreaOfResponsibility AS _SDMAreaOfResponsibility ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ProductDescription AS _Text ON Product = _Text.Product  -- association [0..*]
;