P_ValuatedObjectCostEstimate

DDL: P_VALUATEDOBJECTCOSTESTIMATE SQL: PVOBJCESTIMATE Type: view BASIC

P_ValuatedObjectCostEstimate is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ckmlmv_aux_kalnr) and exposes 10 fields with key field CostEstimate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ckmlmv_aux_kalnr ckmlmv_aux_kalnr from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PVOBJCESTIMATE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CostEstimate kalnr ProdCostEst.No.
Material matnr Vehicle Model
ValuationArea bwkey Valuation Area
InventoryValuationType bwtar Valuation Type
InvtryValnSpecialStockType sobkz Special Stock
SDDocument vbeln SD Sched. Agmt
DocumentItemNumber posnr WBS Element
InvtrySpclStockWBSElmntIntID pspnr WBS Element
Supplier lifnr Vendor no.
_Supplier _Supplier

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_ValuatedObjectCostEstimate.
-- 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: PVOBJCESTIMATE

CREATE VIEW P_ValuatedObjectCostEstimate AS
SELECT
  kalnr AS CostEstimate,
  matnr AS Material,
  bwkey AS ValuationArea,
  bwtar AS InventoryValuationType,
  sobkz AS InvtryValnSpecialStockType,
  vbeln AS SDDocument,
  posnr AS DocumentItemNumber,
  pspnr AS InvtrySpclStockWBSElmntIntID,
  lifnr AS Supplier
FROM ckmlmv_aux_kalnr
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
;