I_COPCCMaterialValuation

DDL: I_COPCCMATERIALVALUATION SQL: ICOPCCMATVAL Type: view BASIC

CO PCC Material Valuation

I_COPCCMaterialValuation is a Basic CDS View that provides data about "CO PCC Material Valuation" in SAP S/4HANA. It reads from 1 data source (P_ProductValuationBasic) and exposes 6 fields with key fields Material, ValuationArea, ValuationType.

Data Sources (1)

SourceAliasJoin Type
P_ProductValuationBasic P_ProductValuationBasic from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICOPCCMATVAL view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CO PCC Material Valuation view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Product Product Sold
KEY ValuationArea ValuationArea Valuation Area
KEY ValuationType ValuationType Valuation Type
ValuationClass ValuationClass Valuation Class
CostOriginGroup CostOriginGroup Origin Group
ProductPriceControl InventoryValuationProcedure Price Control

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_COPCCMaterialValuation.
-- 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: ICOPCCMATVAL

CREATE VIEW I_COPCCMaterialValuation AS
SELECT
  Product AS Material,
  ValuationArea,
  ValuationType,
  ValuationClass,
  CostOriginGroup,
  InventoryValuationProcedure AS ProductPriceControl
FROM P_ProductValuationBasic
;