C_ProdnOrdOpForSafetyInsights

DDL: C_PRODNORDOPFORSAFETYINSIGHTS SQL: CPOOPFORSI Type: view CONSUMPTION

Production Order Operations for Safety Insights

C_ProdnOrdOpForSafetyInsights is a Consumption CDS View that provides data about "Production Order Operations for Safety Insights" in SAP S/4HANA. It reads from 1 data source (A_ProductionOrderOperation) and exposes 8 fields with key fields ManufacturingOrder, ManufacturingOrderOperation.

Data Sources (1)

SourceAliasJoin Type
A_ProductionOrderOperation A_ProductionOrderOperation from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPOOPFORSI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Production Order Operations for Safety Insights view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ManufacturingOrder view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrder ManufacturingOrder Order
KEY ManufacturingOrderOperation ManufacturingOrderOperation Activity
MfgOrderOperationText MfgOrderOperationText
OpActualExecutionStartDate OpActualExecutionStartDate Execution Start Date
OpActualExecutionEndDate OpActualExecutionEndDate Execution End Date
WorkCenterInternalID WorkCenterInternalID Work Center
ManufacturingOrderCategory ManufacturingOrderCategory
ManufacturingOrderType ManufacturingOrderType

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_ProdnOrdOpForSafetyInsights.
-- 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: CPOOPFORSI

CREATE VIEW C_ProdnOrdOpForSafetyInsights AS
SELECT
  ManufacturingOrder,
  ManufacturingOrderOperation,
  MfgOrderOperationText,
  OpActualExecutionStartDate,
  OpActualExecutionEndDate,
  WorkCenterInternalID,
  ManufacturingOrderCategory,
  ManufacturingOrderType
FROM A_ProductionOrderOperation
;