P_Ordoperaggr

DDL: P_ORDOPERAGGR Type: view_entity CONSUMPTION

P_Ordoperaggr is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_ProductionOrdOpBasic) and exposes 3 fields with key fields OrderInternalBillOfOperations, ManufacturingOrder.

Data Sources (1)

SourceAliasJoin Type
I_ProductionOrdOpBasic afvc from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations I_ProductionOrdOpBasic OrderInternalID Plan No.f.Oper.
KEY ManufacturingOrder I_ProductionOrdOpBasic ManufacturingOrder Order
LatestOperation

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_Ordoperaggr.
-- 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 P_Ordoperaggr AS
SELECT
  afvc.OrderInternalID AS OrderInternalBillOfOperations,
  afvc.ManufacturingOrder AS ManufacturingOrder,
  max( afvc.Operation ) AS LatestOperation
FROM I_ProductionOrdOpBasic AS afvc
;