P_MaterialWithActualCosting

DDL: P_MATERIALWITHACTUALCOSTING Type: view_entity COMPOSITE Package: FCML4H_DISPLAY

Materials with activated Actual Costing

P_MaterialWithActualCosting is a Composite CDS View that provides data about "Materials with activated Actual Costing" in SAP S/4HANA. It reads from 3 data sources (ckmlhd, ckmlv, t001w) and exposes 14 fields with key field CostEstimate. It has 3 associations to related views. Part of development package FCML4H_DISPLAY.

Data Sources (3)

SourceAliasJoin Type
ckmlhd ckmlhd from
ckmlv ckmlv inner
t001w t001w inner

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ValuationArea _ValuationArea $projection.ValuationArea = _ValuationArea.ValuationArea
[0..1] I_WBSElementBasicData _WBSElementBasicData $projection.WBSElementInternalID = _WBSElementBasicData.WBSElementInternalID
[0..1] I_InventorySpecialStockType _InventorySpecialStockType $projection.InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY CostEstimate ckmlhd kalnr ProdCostEst.No.
Material
ValuationArea
PriceDeterminationControl ckmlhd mlast Price Determ.
InventoryValuationType
SalesOrder
SalesOrderItem ckmlhd posnr WBS Element
InventorySpecialStockType ckmlhd sobkz Special Stock
InventorySpecialStockTypeName
WBSElementInternalID
Supplier ckmlhd lifnr Vendor no.
CompanyCode _ValuationArea CompanyCode Receiver Company Code
ControllingArea
_WBSElementBasicData _WBSElementBasicData

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_MaterialWithActualCosting.
-- 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_MaterialWithActualCosting AS
SELECT
  ckmlhd.kalnr AS CostEstimate,
  cast( ckmlhd.matnr as matnr preserving type ) AS Material,
  cast( ckmlhd.bwkey as bwkey preserving type ) AS ValuationArea,
  ckmlhd.mlast AS PriceDeterminationControl,
  cast( ckmlhd.bwtar as bwtar_d preserving type ) AS InventoryValuationType,
  cast( ckmlhd.vbeln as vbeln preserving type ) AS SalesOrder,
  ckmlhd.posnr AS SalesOrderItem,
  ckmlhd.sobkz AS InventorySpecialStockType,
  _InventorySpecialStockType._Text[1: Language = $session.system_language].InventorySpecialStockTypeName AS InventorySpecialStockTypeName,
  cast( ckmlhd.pspnr as ps_s4_pspnr preserving type ) AS WBSElementInternalID,
  ckmlhd.lifnr AS Supplier,
  _ValuationArea.CompanyCode AS CompanyCode,
  cast(_ValuationArea._CompanyCode.ControllingArea as kokrs preserving type ) AS ControllingArea
FROM ckmlhd
INNER JOIN t001w ON /* join condition not captured in parsed metadata */
INNER JOIN ckmlv ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ValuationArea AS _ValuationArea ON ValuationArea = _ValuationArea.ValuationArea  -- association [0..1]
LEFT OUTER JOIN I_WBSElementBasicData AS _WBSElementBasicData ON WBSElementInternalID = _WBSElementBasicData.WBSElementInternalID  -- association [0..1]
LEFT OUTER JOIN I_InventorySpecialStockType AS _InventorySpecialStockType ON InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType  -- association [0..1]
;