P_MngProjDmndPurOrdItmHis

DDL: P_MNGPROJDMNDPURORDITMHIS SQL: PRJDMNDPOITMH Type: view COMPOSITE Package: ODATA_PS_DMND_MAINTAIN

Private view for PO item history

P_MngProjDmndPurOrdItmHis is a Composite CDS View that provides data about "Private view for PO item history" in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderHistoryBasic) and exposes 2 fields with key fields PurchaseOrder, PurchaseOrderItem. Part of development package ODATA_PS_DMND_MAINTAIN.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseOrderHistoryBasic I_PurchaseOrderHistoryBasic from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PRJDMNDPOITMH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view

Fields (2)

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

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_MngProjDmndPurOrdItmHis.
-- 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: PRJDMNDPOITMH

CREATE VIEW P_MngProjDmndPurOrdItmHis AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem
FROM I_PurchaseOrderHistoryBasic
;