I_MaterialValuation

DDL: I_MATERIALVALUATION Type: view_entity COMPOSITE

Material Valuation

I_MaterialValuation is a Composite CDS View that provides data about "Material Valuation" in SAP S/4HANA. It reads from 4 data sources (I_ProdSalesOrderStockValuation, I_ProductProjectStockValuation, I_ProductValuationBasic, I_ProdVltdStockSubcontractor) and exposes 42 fields with key field CostEstimate.

Data Sources (4)

SourceAliasJoin Type
I_ProdSalesOrderStockValuation I_ProdSalesOrderStockValuation union_all
I_ProductProjectStockValuation I_ProductProjectStockValuation union_all
I_ProductValuationBasic I_ProductValuationBasic from
I_ProdVltdStockSubcontractor I_ProdVltdStockSubcontractor union_all

Annotations (10)

NameValueLevelField
EndUserText.label Material Valuation view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.representativeKey CostEstimate view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (42)

KeyFieldSource TableSource FieldDescription
KEY CostEstimate ProdCostEstNumber ProdCostEst.No.
MaterialValuationClass ValuationClass Valuation Class
InventoryValuationCategory ValuationCategory Valuation Cat.
Material Product Product Sold
InventoryValuationType ValuationType Valuation Type
ValuationArea ValuationArea Valuation Area
WBSElement WBS Internal ID
InventorySpecialStockType Special Stock Type
SDDocument SD Document
SDDocumentItem WBS Element
Supplier Supplier
MaterialValuationClass ValuationClass Valuation Class
InventoryValuationCategory ValuationCategory Valuation Cat.
Material Product Product Sold
InventoryValuationType ValuationType Valuation Type
ValuationArea ValuationArea Valuation Area
WBSElement WBS Internal ID
InventorySpecialStockType InventorySpecialStockType Special Stock Type
SDDocument SDDocument SD Document
SDDocumentItem SDDocumentItem WBS Element
Supplier Supplier
MaterialValuationClass ValuationClass Valuation Class
InventoryValuationCategory ValuationCategory Valuation Cat.
Material Product Product Sold
InventoryValuationType ValuationType Valuation Type
ValuationArea ValuationArea Valuation Area
WBSElement WBS Internal ID
InventorySpecialStockType InventorySpecialStockType Special Stock Type
SDDocument SD Document
SDDocumentItem WBS Element
Supplier Supplier Supplier
MaterialValuationClass ValuationClass Valuation Class
InventoryValuationCategory ValuationCategory Valuation Cat.
Material Product Product Sold
InventoryValuationType ValuationType Valuation Type
ValuationArea ValuationArea Valuation Area
WBSElement WBSElementInternalID WBS Internal ID
InventorySpecialStockType InventorySpecialStockType Special Stock Type
SDDocument SD Document
SDDocumentItem WBS Element
Supplier Supplier
PriceDeterminationControl PriceDeterminationControl Price Determ.

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 I_MaterialValuation.
-- 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 I_MaterialValuation AS
SELECT
  ProdCostEstNumber AS CostEstimate,
  ValuationClass AS MaterialValuationClass,
  ValuationCategory AS InventoryValuationCategory,
  Product AS Material,
  ValuationType AS InventoryValuationType,
  ValuationArea,
  cast('00000000' as ps_psp_pnr) AS WBSElement,
  cast('' as sobkz) AS InventorySpecialStockType,
  cast('' as vbeln) AS SDDocument,
  cast('000000' as posnr) AS SDDocumentItem,
  cast('' as lifnr) AS Supplier,
  PriceDeterminationControl
FROM I_ProductValuationBasic
-- UNION ALL with additional select branch(es): I_ProdSalesOrderStockValuation, I_ProdVltdStockSubcontractor, I_ProductProjectStockValuation
;