P_MaterialValuationTypesVH

DDL: P_MATERIALVALUATIONTYPESVH Type: view_entity COMPOSITE

P_MaterialValuationTypesVH is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_Plant, I_ProductValuationBasic) and exposes 6 fields with key fields Product, Plant, InventoryValuationType.

Data Sources (2)

SourceAliasJoin Type
I_Plant _Plant inner
I_ProductValuationBasic _ProductValuationBasic from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Product I_ProductValuationBasic Product Product Sold
KEY Plant I_Plant Plant Valuation Area
KEY InventoryValuationType I_ProductValuationBasic ValuationType Valuation Type
InventoryValuationCategory I_ProductValuationBasic ValuationCategory Valuation Cat.
ValuationArea I_ProductValuationBasic ValuationArea Valuation Area
_Product I_ProductValuationBasic _Product

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 P_MaterialValuationTypesVH.
-- 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 P_MaterialValuationTypesVH AS
SELECT
  _ProductValuationBasic.Product AS Product,
  _Plant.Plant AS Plant,
  _ProductValuationBasic.ValuationType AS InventoryValuationType,
  _ProductValuationBasic.ValuationCategory AS InventoryValuationCategory,
  _ProductValuationBasic.ValuationArea AS ValuationArea,
  _ProductValuationBasic._Product AS _Product
FROM I_ProductValuationBasic AS _ProductValuationBasic
INNER JOIN I_Plant AS _Plant ON /* join condition not captured in parsed metadata */
;