P_ProcOrdOperationQtyIssue

DDL: P_PROCORDOPERATIONQTYISSUE SQL: PROCORDOPRQTYISS Type: view COMPOSITE Package: VDM_PP_PROC_ORD_MNG

Process order operations quantity issue

P_ProcOrdOperationQtyIssue is a Composite CDS View that provides data about "Process order operations quantity issue" in SAP S/4HANA. It reads from 2 data sources (P_ProcOrdAORList_2, I_ProcOrdMgmtOpBasic) and exposes 5 fields with key field OrderInternalBillOfOperations. Part of development package VDM_PP_PROC_ORD_MNG.

Data Sources (2)

SourceAliasJoin Type
P_ProcOrdAORList_2 _AORList inner
I_ProcOrdMgmtOpBasic Op from

Annotations (10)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations I_ProcOrdMgmtOpBasic OrderInternalID Plan No.f.Oper.
ProcessOrder ProcessOrder Order
ProcOrdOpHasQuantityIssue
ScheduledBasicStartDate I_ProcOrdMgmtOpBasic ScheduledBasicStartDate Sched. start
ScheduledBasicEndDate I_ProcOrdMgmtOpBasic 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_ProcOrdOperationQtyIssue.
-- 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: PROCORDOPRQTYISS

CREATE VIEW P_ProcOrdOperationQtyIssue AS
SELECT
  Op.OrderInternalID AS OrderInternalBillOfOperations,
  ProcessOrder,
  'X' AS ProcOrdOpHasQuantityIssue,
  Op.ScheduledBasicStartDate AS ScheduledBasicStartDate,
  Op.ScheduledBasicEndDate AS ScheduledBasicEndDate
FROM I_ProcOrdMgmtOpBasic AS Op
INNER JOIN P_ProcOrdAORList_2 AS _AORList ON /* join condition not captured in parsed metadata */
;