C_ResourceObjPgTodayOp

DDL: C_RESOURCEOBJPGTODAYOP Type: view_entity CONSUMPTION

Todays Operations for Resources

C_ResourceObjPgTodayOp is a Consumption CDS View that provides data about "Todays Operations for Resources" in SAP S/4HANA. It reads from 1 data source (I_TodaysOperations) and exposes 24 fields with key fields OrderInternalBillOfOperations, OrderIntBillOfOperationsItem, WorkCenterInternalID.

Data Sources (1)

SourceAliasJoin Type
I_TodaysOperations I_TodaysOperations from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Todays Operations for Resources view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
UI.headerInfo.typeName Today view
UI.headerInfo.typeNamePlural Today view

Fields (24)

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 Process Order
ManufacturingOrderOperation ManufacturingOrderOperation Activity
ManufacturingOrderCategory ManufacturingOrderCategory
MfgOrderOperationText MfgOrderOperationText
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
OperationUnit OperationUnit Act/op UoM
OpTotalConfirmedYieldQty OpTotalConfirmedYieldQty Confirmed Quantity
ErlstSchedldExecDurnInWorkdays ErlstSchedldExecDurnInWorkdays Planned Duration
OpActualExecutionDays OpActualExecutionDays Actual Duration
ManufacturingOrderSequence ManufacturingOrderSequence
MfgOrderOperationIsPhase MfgOrderOperationIsPhase
_Material _Material
_MfgOrderSequence _MfgOrderSequence
_MfgOrder _MfgOrder

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_ResourceObjPgTodayOp.
-- 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_ResourceObjPgTodayOp AS
SELECT
  OrderInternalBillOfOperations,
  OrderIntBillOfOperationsItem,
  WorkCenterInternalID,
  ManufacturingOrder,
  ManufacturingOrderOperation,
  ManufacturingOrderCategory,
  MfgOrderOperationText,
  Material,
  _Material._Text[1:Language=$session.system_language].MaterialName AS MaterialName,
  OperationIsReleased,
  OpErlstSchedldExecStrtDte,
  OpErlstSchedldExecStrtTme,
  OpErlstSchedldExecEndDte,
  OpErlstSchedldExecEndTme,
  OpPlannedTotalQuantity,
  OperationUnit,
  OpTotalConfirmedYieldQty,
  ErlstSchedldExecDurnInWorkdays,
  OpActualExecutionDays,
  ManufacturingOrderSequence,
  MfgOrderOperationIsPhase
FROM I_TodaysOperations
;