P_OpenTargetQuantity

DDL: P_OPENTARGETQUANTITY SQL: POPENTARGETQ Type: view CONSUMPTION Package: ODATA_MM_PUR_CTRITEMACCT_MNTR

Open Target Quantity

P_OpenTargetQuantity is a Consumption CDS View that provides data about "Open Target Quantity" in SAP S/4HANA. It reads from 1 data source (I_PurchaseContractHistory) and exposes 3 fields with key fields PurchaseContract, PurchaseContractItem. Part of development package ODATA_MM_PUR_CTRITEMACCT_MNTR.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseContractHistory _PurchaseContractHistory from

Annotations (7)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName POPENTARGETQ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Open Target Quantity view
VDM.private true view
VDM.viewType #CONSUMPTION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContract I_PurchaseContractHistory PurchaseContract Purchasing Doc.
KEY PurchaseContractItem I_PurchaseContractHistory PurchaseContractItem Item
QuantityReleasedTillDate

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_OpenTargetQuantity.
-- 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: POPENTARGETQ

CREATE VIEW P_OpenTargetQuantity AS
SELECT
  _PurchaseContractHistory.PurchaseContract AS PurchaseContract,
  _PurchaseContractHistory.PurchaseContractItem AS PurchaseContractItem,
  sum(_PurchaseContractHistory.ReleaseOrderItemOrderQuantity) AS QuantityReleasedTillDate
FROM I_PurchaseContractHistory AS _PurchaseContractHistory
;