P_ProductCostEstimateItemText

DDL: P_PRODUCTCOSTESTIMATEITEMTEXT Type: view_entity BASIC

P_ProductCostEstimateItemText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ckit) and exposes 11 fields with key fields lednr, CostingReferenceObject, ProdCostEstNumber, CostingType, CostingDate.

Data Sources (1)

SourceAliasJoin Type
ckit ckit from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY lednr lednr Ledger
KEY CostingReferenceObject bzobj Reference Obj.
KEY ProdCostEstNumber kalnr ProdCostEst.No.
KEY CostingType kalka Costing Type
KEY CostingDate kadky Costing Date
KEY CostingVersion tvers Costing Version
KEY ValuationVariant bwvar Valuation Variant
KEY CostIsEnteredManually kkzma Additive Costs
KEY CostingItem posnr WBS Element
KEY Language spras Off. Language
Description ltext Text exists

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_ProductCostEstimateItemText.
-- 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_ProductCostEstimateItemText AS
SELECT
  lednr,
  bzobj AS CostingReferenceObject,
  kalnr AS ProdCostEstNumber,
  kalka AS CostingType,
  kadky AS CostingDate,
  tvers AS CostingVersion,
  bwvar AS ValuationVariant,
  kkzma AS CostIsEnteredManually,
  posnr AS CostingItem,
  spras AS Language,
  ltext AS Description
FROM ckit
;