C_ProcOrdMgmtOpComponents

DDL: C_PROCORDMGMTOPCOMPONENTS Type: view_entity CONSUMPTION

Process Order Operation Components

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

Data Sources (1)

SourceAliasJoin Type
I_ProcOrdMgmtOpComponents I_ProcOrdMgmtOpComponents 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 (32)

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

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