C_WrkCntrObjPgQueueOp

DDL: C_WRKCNTROBJPGQUEUEOP Type: view_entity CONSUMPTION Package: ODATA_MPE_MFGORDER

Work Center Queuing Operation

C_WrkCntrObjPgQueueOp is a Consumption CDS View that provides data about "Work Center Queuing Operation" in SAP S/4HANA. It reads from 1 data source (P_QueuingOperations) and exposes 23 fields with key fields OrderInternalBillOfOperations, OrderIntBillOfOperationsItem, WorkCenterInternalID. It is exposed through 1 OData service (ASQL_F2262). Part of development package ODATA_MPE_MFGORDER.

Data Sources (1)

SourceAliasJoin Type
P_QueuingOperations P_QueuingOperations from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Work Center Queuing Operation view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
UI.headerInfo.typeName Queuing Operation view
UI.headerInfo.typeNamePlural Queuing Operations view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2262 ASQL_F2262 C2 NOT_RELEASED

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations OrderInternalBillOfOperations Order Internal Bill of Operations
KEY OrderIntBillOfOperationsItem OrderIntBillOfOperationsItem Order Internal Bill of Operations Item
KEY WorkCenterInternalID WorkCenterInternalID Work Center
ManufacturingOrder ManufacturingOrder Production Order
ManufacturingOrderOperation ManufacturingOrderOperation Activity
MfgOrderOperationText MfgOrderOperationText
ManufacturingOrderCategory ManufacturingOrderCategory
Material Material Material
MaterialName
OperationIsReleased OperationIsReleased
OpErlstSchedldExecStrtDte OpErlstSchedldExecStrtDte Planned Start Date
OpErlstSchedldExecStrtTme OpErlstSchedldExecStrtTme Planned Start Time
OpErlstSchedldExecEndDte OpErlstSchedldExecEndDte Planned End Date
OpErlstSchedldExecEndTme OpErlstSchedldExecEndTme Planned End Time
OpPlannedTotalQuantity OpPlannedTotalQuantity Total Queue Quantity
OperationUnit OperationUnit Act/op UoM
OpTotalConfirmedYieldQty OpTotalConfirmedYieldQty Confirmed Quantity
ErlstSchedldExecDurnInWorkdays ErlstSchedldExecDurnInWorkdays Planned Duration
RemainingDuration RemainingDuration Remaining Duration
ManufacturingOrderSequence ManufacturingOrderSequence
_Material _Material
_MfgOrder _MfgOrder
_MfgOrderSequence _MfgOrderSequence

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 C_WrkCntrObjPgQueueOp.
-- 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.

CREATE VIEW C_WrkCntrObjPgQueueOp AS
SELECT
  OrderInternalBillOfOperations,
  OrderIntBillOfOperationsItem,
  WorkCenterInternalID,
  ManufacturingOrder,
  ManufacturingOrderOperation,
  MfgOrderOperationText,
  ManufacturingOrderCategory,
  Material,
  _Material._Text[1:Language=$session.system_language].MaterialName AS MaterialName,
  OperationIsReleased,
  OpErlstSchedldExecStrtDte,
  OpErlstSchedldExecStrtTme,
  OpErlstSchedldExecEndDte,
  OpErlstSchedldExecEndTme,
  OpPlannedTotalQuantity,
  OperationUnit,
  OpTotalConfirmedYieldQty,
  ErlstSchedldExecDurnInWorkdays,
  RemainingDuration,
  ManufacturingOrderSequence
FROM P_QueuingOperations
;