P_ProcOrdOpCompIssAggrgn

DDL: P_PROCORDOPCOMPISSAGGRGN SQL: PPOROPCMPISSAG Type: view COMPOSITE

P_ProcOrdOpCompIssAggrgn is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_ProcOrdMgmtOpComponents) and exposes 6 fields with key fields OrderInternalBillOfOperations, OrderIntBillOfOperationsItem.

Data Sources (1)

SourceAliasJoin Type
P_ProcOrdMgmtOpComponents P_ProcOrdMgmtOpComponents from

Annotations (10)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations OrderInternalBillOfOperations Order Internal Bill of Operations
KEY OrderIntBillOfOperationsItem OrderIntBillOfOperationsItem Order Internal Bill of Operations Item
ProcessOrder ProcessOrder Order
ProductionPlant ProductionPlant Prod plnt
ProductionSupervisor ProductionSupervisor Prodn Supervisor
ProcOrdOpCompAvailyStatusCode

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_ProcOrdOpCompIssAggrgn.
-- 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: PPOROPCMPISSAG

CREATE VIEW P_ProcOrdOpCompIssAggrgn AS
SELECT
  OrderInternalBillOfOperations,
  OrderIntBillOfOperationsItem,
  ProcessOrder,
  ProductionPlant,
  ProductionSupervisor,
  min(ProcOrdCompAvailabilityStsCode) AS ProcOrdOpCompAvailyStatusCode
FROM P_ProcOrdMgmtOpComponents
;