P_POItemGoodsReceiptCalc

DDL: P_POITEMGOODSRECEIPTCALC SQL: PPOGRCALC Type: view COMPOSITE

P_POItemGoodsReceiptCalc is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderScheduleLine) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseOrderScheduleLine I_PurchaseOrderScheduleLine from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PPOGRCALC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
GoodsReceiptQuantity

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_POItemGoodsReceiptCalc.
-- 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: PPOGRCALC

CREATE VIEW P_POItemGoodsReceiptCalc AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem,
  sum(RoughGoodsReceiptQty) AS GoodsReceiptQuantity
FROM I_PurchaseOrderScheduleLine
;