P_MfgOrdOpActiveInQueueSFI

DDL: P_MFGORDOPACTIVEINQUEUESFI SQL: PMPEOPSFIACTVIQ Type: view COMPOSITE

P_MfgOrdOpActiveInQueueSFI is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_OrderOperationBasic, I_ShopFloorItemStatus) and exposes 7 fields with key fields OrderInternalID, OrderOperationInternalID, ShopFloorItem.

Data Sources (2)

SourceAliasJoin Type
I_OrderOperationBasic OrderOperationBasic from
I_ShopFloorItemStatus ShopFloorItemStatus inner

Annotations (10)

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID I_OrderOperationBasic OrderInternalID Plan No.f.Oper.
KEY OrderOperationInternalID I_OrderOperationBasic OrderOperationInternalID Plan No.f.Oper.
KEY ShopFloorItem I_ShopFloorItemStatus ShopFloorItem Serial.Mat. ID
Plant I_OrderOperationBasic Plant Valuation Area
Operation I_OrderOperationBasic Operation Transaction
_OrderInternalID I_OrderOperationBasic _OrderInternalID
_ShopFloorItem I_ShopFloorItemStatus _ShopFloorItem

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_MfgOrdOpActiveInQueueSFI.
-- 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: PMPEOPSFIACTVIQ

CREATE VIEW P_MfgOrdOpActiveInQueueSFI AS
SELECT
  OrderOperationBasic.OrderInternalID AS OrderInternalID,
  OrderOperationBasic.OrderOperationInternalID AS OrderOperationInternalID,
  ShopFloorItemStatus.ShopFloorItem AS ShopFloorItem,
  OrderOperationBasic.Plant AS Plant,
  OrderOperationBasic.Operation AS Operation,
  OrderOperationBasic._OrderInternalID AS _OrderInternalID,
  ShopFloorItemStatus._ShopFloorItem AS _ShopFloorItem
FROM I_OrderOperationBasic AS OrderOperationBasic
INNER JOIN I_ShopFloorItemStatus AS ShopFloorItemStatus ON /* join condition not captured in parsed metadata */
;