I_MfgOrderOperationBySemKey

DDL: I_MFGORDEROPERATIONBYSEMKEY SQL: IMFGORDOPBYSEMK Type: view COMPOSITE

Manufacturing Order Operation By Semantic Key

I_MfgOrderOperationBySemKey is a Composite CDS View (Dimension) that provides data about "Manufacturing Order Operation By Semantic Key" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderOperationBasic) and exposes 22 fields with key fields ManufacturingOrder, ManufacturingOrderSequence, ManufacturingOrderOperation. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_MfgOrderOperationBasic afvc from

Associations (5)

CardinalityTargetAliasCondition
[1..1] I_ManufacturingOrder _MfgOrder $projection.ManufacturingOrder = _MfgOrder.ManufacturingOrder
[1..1] I_ManufacturingOrderSequence _MfgOrderSequence $projection.ManufacturingOrder = _MfgOrderSequence.ManufacturingOrder and $projection.ManufacturingOrderSequence = _MfgOrderSequence.ManufacturingOrderSequence
[1..1] I_Plant _ProductionPlant $projection.ProductionPlant = _ProductionPlant.Plant
[1..1] I_OrderInternalID _OrderInternalID $projection.OrderInternalID = _OrderInternalID.OrderInternalID
[0..1] I_Language _LongTextLanguage $projection.LongTextLanguage = _LongTextLanguage.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IMFGORDOPBYSEMK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey ManufacturingOrderOperation view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
EndUserText.label Manufacturing Order Operation By Semantic Key view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrder I_MfgOrderOperationBasic ManufacturingOrder Order
KEY ManufacturingOrderSequence I_MfgOrderOperationBasic ManufacturingOrderSequence Visit Sequence
KEY ManufacturingOrderOperation I_MfgOrderOperationBasic ManufacturingOrderOperation_2
OperationIsSubOperation I_MfgOrderOperationBasic OperationIsSubOperation
MfgOrderOperationIsPhase I_MfgOrderOperationBasic MfgOrderOperationIsPhase
ManufacturingOrderCategory I_MfgOrderOperationBasic ManufacturingOrderCategory
ManufacturingOrderType I_MfgOrderOperationBasic ManufacturingOrderType
ProductionPlant I_MfgOrderOperationBasic ProductionPlant Prod plnt
MfgOrderOperationText
LongTextLanguage I_MfgOrderOperationBasic Language Report Text Language
OrderInternalID I_MfgOrderOperationBasic OrderInternalBillOfOperations Order Internal Bill of Operations
OrderOperationInternalID I_MfgOrderOperationBasic OrderIntBillOfOperationsItem Order Internal Bill of Operations Item
OperationConfirmation I_MfgOrderOperationBasic OperationConfirmation
NumberOfOperationConfirmations I_MfgOrderOperationBasic NumberOfOperationConfirmations
_MfgOrder _MfgOrder
_MfgOrderSequence _MfgOrderSequence
_MfgOrderCategory _MfgOrderCategory
_MfgOrderType _MfgOrderType
_ProductionPlant _ProductionPlant
_OrderInternalID _OrderInternalID
_ConfirmationGroup _ConfirmationGroup
_LongTextLanguage _LongTextLanguage

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_MfgOrderOperationBySemKey.
-- 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: IMFGORDOPBYSEMK

CREATE VIEW I_MfgOrderOperationBySemKey AS
SELECT
  afvc.ManufacturingOrder AS ManufacturingOrder,
  afvc.ManufacturingOrderSequence AS ManufacturingOrderSequence,
  afvc.ManufacturingOrderOperation_2 AS ManufacturingOrderOperation,
  afvc.OperationIsSubOperation AS OperationIsSubOperation,
  afvc.MfgOrderOperationIsPhase AS MfgOrderOperationIsPhase,
  afvc.ManufacturingOrderCategory AS ManufacturingOrderCategory,
  afvc.ManufacturingOrderType AS ManufacturingOrderType,
  afvc.ProductionPlant AS ProductionPlant,
  cast(afvc.MfgOrderOperationText as mfgorderoperationtext preserving type) AS MfgOrderOperationText,
  afvc.Language AS LongTextLanguage,
  afvc.OrderInternalBillOfOperations AS OrderInternalID,
  afvc.OrderIntBillOfOperationsItem AS OrderOperationInternalID,
  afvc.OperationConfirmation AS OperationConfirmation,
  afvc.NumberOfOperationConfirmations AS NumberOfOperationConfirmations
FROM I_MfgOrderOperationBasic AS afvc
LEFT OUTER JOIN I_ManufacturingOrder AS _MfgOrder ON ManufacturingOrder = _MfgOrder.ManufacturingOrder  -- association [1..1]
LEFT OUTER JOIN I_ManufacturingOrderSequence AS _MfgOrderSequence ON ManufacturingOrder = _MfgOrderSequence.ManufacturingOrder AND ManufacturingOrderSequence = _MfgOrderSequence.ManufacturingOrderSequence  -- association [1..1]
LEFT OUTER JOIN I_Plant AS _ProductionPlant ON ProductionPlant = _ProductionPlant.Plant  -- association [1..1]
LEFT OUTER JOIN I_OrderInternalID AS _OrderInternalID ON OrderInternalID = _OrderInternalID.OrderInternalID  -- association [1..1]
LEFT OUTER JOIN I_Language AS _LongTextLanguage ON LongTextLanguage = _LongTextLanguage.Language  -- association [0..1]
;