P_ProcOrdOpDelayAggrgn

DDL: P_PROCORDOPDELAYAGGRGN SQL: PPOROPDLYAGGR Type: view COMPOSITE Package: VDM_PP_PROC_ORD_MNG

Process order operation delay aggregation

P_ProcOrdOpDelayAggrgn is a Composite CDS View that provides data about "Process order operation delay aggregation" in SAP S/4HANA. It reads from 1 data source (P_ProcOrdMgmtOperationCalc) and exposes 5 fields with key field OrderInternalBillOfOperations. Part of development package VDM_PP_PROC_ORD_MNG.

Data Sources (1)

SourceAliasJoin Type
P_ProcOrdMgmtOperationCalc Op from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PPOROPDLYAGGR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations OrderInternalBillOfOperations Order Internal Bill of Operations
ProcessOrder ManufacturingOrder Order
ProcOrdOpIsDelayed
ScheduledBasicStartDate ScheduledBasicStartDate Sched. start
ScheduledBasicEndDate ScheduledBasicEndDate Sched. finish

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_ProcOrdOpDelayAggrgn.
-- 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: PPOROPDLYAGGR

CREATE VIEW P_ProcOrdOpDelayAggrgn AS
SELECT
  OrderInternalBillOfOperations,
  ManufacturingOrder AS ProcessOrder,
  'X' AS ProcOrdOpIsDelayed,
  ScheduledBasicStartDate,
  ScheduledBasicEndDate
FROM P_ProcOrdMgmtOperationCalc AS Op
;