C_ProcOrdMgmtOpCompAggrgn

DDL: C_PROCORDMGMTOPCOMPAGGRGN Type: view_entity CONSUMPTION

Process Order Operation Components

C_ProcOrdMgmtOpCompAggrgn is a Consumption CDS View that provides data about "Process Order Operation Components" in SAP S/4HANA. It reads from 1 data source (I_ProcOrdMgmtOpCompAggrgn) and exposes 36 fields with key fields Reservation, ReservationItem, RecordType.

Data Sources (1)

SourceAliasJoin Type
I_ProcOrdMgmtOpCompAggrgn I_ProcOrdMgmtOpCompAggrgn projection

Annotations (13)

NameValueLevelField
EndUserText.label Process Order Operation Components view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value Material view
UI.headerInfo.description.type #STANDARD view
UI.headerInfo.description.value MaterialName view
UI.headerInfo.typeName Component view
UI.headerInfo.typeNamePlural Components view

Fields (36)

KeyFieldSource TableSource FieldDescription
KEY Reservation Reservation Reservation
KEY ReservationItem ReservationItem Reservation Item
KEY RecordType RecordType Reservation Record Type
ProcessOrder ProcessOrder Order
ManufacturingOrderOperation ManufacturingOrderOperation Assigned Operation
ManufacturingOrderSequence ManufacturingOrderSequence
ManufacturingOrderCategory ManufacturingOrderCategory
ManufacturingOrderType ManufacturingOrderType
Material Material Vehicle Model
MaterialName MaterialName Material Description
PlanningPlant PlanningPlant
ProductionPlant ProductionPlant Prod plnt
ProductionPlantName ProductionPlantName
BaseUnit BaseUnit Unit of Measure
RequiredQuantity RequiredQuantity Required Quantity
ConfirmedAvailableQuantity ConfirmedAvailableQuantity Committed Quantity
WithdrawnQuantity WithdrawnQuantity Withdrawn Quantity
EntryUnit EntryUnit Unit of Entry
GoodsMovementEntryQty GoodsMovementEntryQty Required Quantity in Unit of Issue
MatlCompIsMarkedForBackflush MatlCompIsMarkedForBackflush Backflush
MatlCompRequirementDate MatlCompRequirementDate Requirement Date
ProcOrdCompAvailabilityStsCode ProcOrdCompAvailabilityStsCode Status
Batch Batch Batch
ReservationIsFinallyIssued ReservationIsFinallyIssued Res Final Issue
IsBatchManagementRequired IsBatchManagementRequired Batch Indicator
BillOfMaterialItemCategory BillOfMaterialItemCategory Item Category
BillOfMaterialItemCategoryDesc BillOfMaterialItemCategoryDesc Item Category Description
StorageLocation StorageLocation Storage Location
StorageLocationName StorageLocationName Storage Loc. Name
MaterialIsCoProduct MaterialIsCoProduct Co-Product Indicator
MaterialAvailyIsNotChecked MaterialAvailyIsNotChecked
MaterialComponentIsMissing MaterialComponentIsMissing
LeadingReservationItem LeadingReservationItem
NumberOfBatches NumberOfBatches Number of Batches
MatlCompIsMarkedForDeletion MatlCompIsMarkedForDeletion Item Deleted
PlantTimeZone PlantTimeZone Time Zone

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_ProcOrdMgmtOpCompAggrgn.
-- 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_ProcOrdMgmtOpCompAggrgn AS
SELECT
  Reservation,
  ReservationItem,
  RecordType,
  ProcessOrder,
  ManufacturingOrderOperation,
  ManufacturingOrderSequence,
  ManufacturingOrderCategory,
  ManufacturingOrderType,
  Material,
  MaterialName,
  PlanningPlant,
  ProductionPlant,
  ProductionPlantName,
  BaseUnit,
  RequiredQuantity,
  ConfirmedAvailableQuantity,
  WithdrawnQuantity,
  EntryUnit,
  GoodsMovementEntryQty,
  MatlCompIsMarkedForBackflush,
  MatlCompRequirementDate,
  ProcOrdCompAvailabilityStsCode,
  Batch,
  ReservationIsFinallyIssued,
  IsBatchManagementRequired,
  BillOfMaterialItemCategory,
  BillOfMaterialItemCategoryDesc,
  StorageLocation,
  StorageLocationName,
  MaterialIsCoProduct,
  MaterialAvailyIsNotChecked,
  MaterialComponentIsMissing,
  LeadingReservationItem,
  NumberOfBatches,
  MatlCompIsMarkedForDeletion,
  PlantTimeZone
FROM I_ProcOrdMgmtOpCompAggrgn
;