A_ProductValuationCosting_2

DDL: A_PRODUCTVALUATIONCOSTING_2 Type: view_entity CONSUMPTION

Product Valuation Costing

A_ProductValuationCosting_2 is a Consumption CDS View that provides data about "Product Valuation Costing" in SAP S/4HANA. It reads from 1 data source (R_ProductValuationCostingTP) and exposes 15 fields with key fields Product, ValuationArea, ValuationType.

Data Sources (1)

SourceAliasJoin Type
R_ProductValuationCostingTP R_ProductValuationCostingTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Valuation Costing view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name ProductValuationCosting_Type view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY ValuationArea ValuationArea Valuation Area
KEY ValuationType ValuationType Valuation Type
ProductIsCostedWithQtyStruc ProductIsCostedWithQtyStruc
IsMaterialRelatedOrigin IsMaterialRelatedOrigin
CostOriginGroup CostOriginGroup Origin Group
CostingOverheadGroup CostingOverheadGroup
PlannedPrice1InCoCodeCrcy PlannedPrice1InCoCodeCrcy
PlannedPrice2InCoCodeCrcy PlannedPrice2InCoCodeCrcy
PlannedPrice3InCoCodeCrcy PlannedPrice3InCoCodeCrcy
FuturePlndPrice1ValdtyDate FuturePlndPrice1ValdtyDate
FuturePlndPrice2ValdtyDate FuturePlndPrice2ValdtyDate
FuturePlndPrice3ValdtyDate FuturePlndPrice3ValdtyDate
Currency Currency Valuation Crcy
_ProductredirectedtoA_Product_2

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 A_ProductValuationCosting_2.
-- 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 A_ProductValuationCosting_2 AS
SELECT
  Product,
  ValuationArea,
  ValuationType,
  ProductIsCostedWithQtyStruc,
  IsMaterialRelatedOrigin,
  CostOriginGroup,
  CostingOverheadGroup,
  PlannedPrice1InCoCodeCrcy,
  PlannedPrice2InCoCodeCrcy,
  PlannedPrice3InCoCodeCrcy,
  FuturePlndPrice1ValdtyDate,
  FuturePlndPrice2ValdtyDate,
  FuturePlndPrice3ValdtyDate,
  Currency
FROM R_ProductValuationCostingTP
;