I_MfgOrderOperationBySemKey
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)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrderOperationBasic | afvc | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA