I_MfgOrderOpComponentDataList

DDL: I_MFGORDEROPCOMPONENTDATALIST SQL: IPPMOROPCOMPDATA Type: view COMPOSITE

Mfg Order Component (Data List)

I_MfgOrderOpComponentDataList is a Composite CDS View that provides data about "Mfg Order Component (Data List)" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderOperationComponent) and exposes 27 fields with key fields Reservation, ReservationItem, RecordType. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_MfgOrderOperationComponent MfgOrderOperationComponent from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Product _Product $projection.Material = _Product.Product
[1..1] I_MfgOrderOperationComponent _MfgOrderOperationComponent $projection.Reservation = _MfgOrderOperationComponent.Reservation and $projection.ReservationItem = _MfgOrderOperationComponent.ReservationItem and $projection.RecordType = _MfgOrderOperationComponent.RecordType
[1..1] E_ReservationDocumentItem _Extension $projection.Reservation = _Extension.Reservation and $projection.ReservationItem = _Extension.ReservationItem and $projection.RecordType = _Extension.RecordType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPPMOROPCOMPDATA view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Mfg Order Component (Data List) view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_MfgOrderOperationComponent Reservation Reservation
KEY ReservationItem I_MfgOrderOperationComponent ReservationItem Reservation Item
KEY RecordType I_MfgOrderOperationComponent RecordType Reservation Record Type
ManufacturingOrder I_MfgOrderOperationComponent ManufacturingOrder Order
ManufacturingOrderSequence I_MfgOrderOperationComponent ManufacturingOrderSequence
ManufacturingOrderOperation I_MfgOrderOperationComponent ManufacturingOrderOperation Activity
OrderInternalBillOfOperations I_MfgOrderOperationComponent OrderInternalBillOfOperations Order Internal Bill of Operations
OrderIntBillOfOperationsItem I_MfgOrderOperationComponent OrderIntBillOfOperationsItem Order Internal Bill of Operations Item
BOMItemCategory I_MfgOrderOperationComponent BOMItemCategory Item Category
BillOfMaterialItemNumber I_MfgOrderOperationComponent BillOfMaterialItemNumber Item
LongTextLanguageCode I_MfgOrderOperationComponent LongTextLanguageCode Language
MatlCompRequirementDate I_MfgOrderOperationComponent MatlCompRequirementDate Reqmts date
Material I_MfgOrderOperationComponent Material Vehicle Model
BOMItemDescription I_MfgOrderOperationComponent BOMItemDescription Item Text
Batch I_MfgOrderOperationComponent Batch Lot No.
StorageLocation I_MfgOrderOperationComponent StorageLocation StorageLocation
RequiredQuantity I_MfgOrderOperationComponent RequiredQuantity Requirement qty
BaseUnit I_MfgOrderOperationComponent BaseUnit Unit of Measure
GoodsMovementEntryQty I_MfgOrderOperationComponent GoodsMovementEntryQty
EntryUnit I_MfgOrderOperationComponent EntryUnit Unit of Entry
DebitCreditCode I_MfgOrderOperationComponent DebitCreditCode Single-Character Flag
MaterialComponentSortText I_MfgOrderOperationComponent MaterialComponentSortText Sort string
MaterialComponentIsPhantomItem I_MfgOrderOperationComponent MaterialComponentIsPhantomItem Phantom Item
BatchSplitType I_MfgOrderOperationComponent BatchSplitType Checkbox
_BaseUnit _BaseUnit
_MfgOrderOperationComponent _MfgOrderOperationComponent
_Product _Product

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 I_MfgOrderOpComponentDataList.
-- 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: IPPMOROPCOMPDATA

CREATE VIEW I_MfgOrderOpComponentDataList AS
SELECT
  MfgOrderOperationComponent.Reservation AS Reservation,
  MfgOrderOperationComponent.ReservationItem AS ReservationItem,
  MfgOrderOperationComponent.RecordType AS RecordType,
  MfgOrderOperationComponent.ManufacturingOrder AS ManufacturingOrder,
  MfgOrderOperationComponent.ManufacturingOrderSequence AS ManufacturingOrderSequence,
  MfgOrderOperationComponent.ManufacturingOrderOperation AS ManufacturingOrderOperation,
  MfgOrderOperationComponent.OrderInternalBillOfOperations AS OrderInternalBillOfOperations,
  MfgOrderOperationComponent.OrderIntBillOfOperationsItem AS OrderIntBillOfOperationsItem,
  MfgOrderOperationComponent.BOMItemCategory AS BOMItemCategory,
  MfgOrderOperationComponent.BillOfMaterialItemNumber AS BillOfMaterialItemNumber,
  MfgOrderOperationComponent.LongTextLanguageCode AS LongTextLanguageCode,
  MfgOrderOperationComponent.MatlCompRequirementDate AS MatlCompRequirementDate,
  MfgOrderOperationComponent.Material AS Material,
  MfgOrderOperationComponent.BOMItemDescription AS BOMItemDescription,
  MfgOrderOperationComponent.Batch AS Batch,
  MfgOrderOperationComponent.StorageLocation AS StorageLocation,
  MfgOrderOperationComponent.RequiredQuantity AS RequiredQuantity,
  MfgOrderOperationComponent.BaseUnit AS BaseUnit,
  MfgOrderOperationComponent.GoodsMovementEntryQty AS GoodsMovementEntryQty,
  MfgOrderOperationComponent.EntryUnit AS EntryUnit,
  MfgOrderOperationComponent.DebitCreditCode AS DebitCreditCode,
  MfgOrderOperationComponent.MaterialComponentSortText AS MaterialComponentSortText,
  MfgOrderOperationComponent.MaterialComponentIsPhantomItem AS MaterialComponentIsPhantomItem,
  MfgOrderOperationComponent.BatchSplitType AS BatchSplitType
FROM I_MfgOrderOperationComponent AS MfgOrderOperationComponent
LEFT OUTER JOIN I_Product AS _Product ON Material = _Product.Product  -- association [1..1]
LEFT OUTER JOIN I_MfgOrderOperationComponent AS _MfgOrderOperationComponent ON Reservation = _MfgOrderOperationComponent.Reservation AND ReservationItem = _MfgOrderOperationComponent.ReservationItem AND RecordType = _MfgOrderOperationComponent.RecordType  -- association [1..1]
LEFT OUTER JOIN E_ReservationDocumentItem AS _Extension ON Reservation = _Extension.Reservation AND ReservationItem = _Extension.ReservationItem AND RecordType = _Extension.RecordType  -- association [1..1]
;