P_ProcOrdOperationQtyIssue

DDL: P_PROCORDOPERATIONQTYISSUE SQL: PROCORDOPRQTYISS Type: view COMPOSITE

P_ProcOrdOperationQtyIssue is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_ProcOrdAORListDistinct, I_ProcOrdMgmtOpBasic) and exposes 3 fields with key field OrderInternalBillOfOperations.

Data Sources (2)

SourceAliasJoin Type
P_ProcOrdAORListDistinct _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 (3)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations I_ProcOrdMgmtOpBasic OrderInternalID Plan No.f.Oper.
ProcessOrder ProcessOrder Order
ProcOrdOpHasQuantityIssue

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
FROM I_ProcOrdMgmtOpBasic AS Op
INNER JOIN P_ProcOrdAORListDistinct AS _AORList ON /* join condition not captured in parsed metadata */
;