C_DemandDrivenMassProdVH

DDL: C_DEMANDDRIVENMASSPRODVH SQL: CDDPRDVALHELP Type: view CONSUMPTION

Demand Driven Product Value Help

C_DemandDrivenMassProdVH is a Consumption CDS View that provides data about "Demand Driven Product Value Help" in SAP S/4HANA. It reads from 1 data source (I_DemandDrivenExtdProduct) and exposes 8 fields with key fields Material, Plant, MRPArea. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DemandDrivenExtdProduct I_DemandDrivenExtdProduct from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialText _Text1 $projection.Material = _Text1.Material

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CDDPRDVALHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Demand Driven Product Value Help view
Search.searchable true view
Consumption.ranked true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material Material Product
KEY Plant Plant Valuation Area
KEY MRPArea MRPArea MRP Area
ProductDescription Product Description
MRPType MRPType MRP Type
ProductGroup Product Group
BaseUnit
AuthorizationGroup

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_DemandDrivenMassProdVH.
-- 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: CDDPRDVALHELP

CREATE VIEW C_DemandDrivenMassProdVH AS
SELECT
  Material,
  Plant,
  MRPArea,
  _Text1[1:Language=$session.system_language].MaterialName AS ProductDescription,
  MRPType,
  _BufMatPlant._Material.ProductGroup AS ProductGroup,
  _BufMatPlant._Material.BaseUnit AS BaseUnit,
  _BufMatPlant._Material.AuthorizationGroup AS AuthorizationGroup
FROM I_DemandDrivenExtdProduct
LEFT OUTER JOIN I_MaterialText AS _Text1 ON Material = _Text1.Material  -- association [0..*]
;