I_OperationActivitySFIGroup
SFI At Operation Activity Group
I_OperationActivitySFIGroup is a Basic CDS View that provides data about "SFI At Operation Activity Group" in SAP S/4HANA. It reads from 1 data source (mpe_sfi_oai_grp) and exposes 19 fields with key field OperationActivitySFIGroup. It has 7 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mpe_sfi_oai_grp | grp | from |
Associations (7)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ShopFloorItem | _RepresentativeShopFloorItem | $projection.RepresentativeShopFloorItem = _RepresentativeShopFloorItem.ShopFloorItem |
| [0..1] | I_OpActyNtwkInstance | _RprstvOpActyNtwkInstance | $projection.RprstvOpActyNtwkInstance = _RprstvOpActyNtwkInstance.OpActyNtwkInstance |
| [0..1] | I_OperationActivityInstance | _RprstvOpActyInstance | $projection.RprstvOpActyNtwkInstance = _RprstvOpActyInstance.OpActyNtwkInstance and $projection.RprstvOpActyNtwkElement = _RprstvOpActyInstance.OpActyNtwkElement |
| [0..1] | I_ShopFloorItemStatus | _RprstvSFIAtOpActyStatus | $projection.RepresentativeShopFloorItem = _RprstvSFIAtOpActyStatus.ShopFloorItem and $projection.RprstvOpActyNtwkInstance = _RprstvSFIAtOpActyStatus.OpActyNtwkInstance and $projection.RprstvOpActyNtwkElement = _RprstvSFIAtOpActyStatus.OpActyNtwkElement |
| [1..1] | I_Plant | _ProductionPlant | $projection.ProductionPlant = _ProductionPlant.Plant |
| [0..1] | I_WorkCenter | _WorkCenterByInternalID | _WorkCenterByInternalID.WorkCenterTypeCode = 'A ' and $projection.WorkCenterInternalID = _WorkCenterByInternalID.WorkCenterInternalID |
| [0..1] | I_OperationActivitySFIGroup | _SourceOpActySFIGroup | $projection.SourceOpActySFIGroup = _SourceOpActySFIGroup.OperationActivitySFIGroup |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPEOASFIGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | OperationActivitySFIGroup | view | |
| EndUserText.label | SFI At Operation Activity Group | view |
Fields (19)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OperationActivitySFIGroup | mpe_sfi_oai_grp | sfi_group_id | Serial Number Group |
| OpActySFIGroupName | mpe_sfi_oai_grp | sfi_group_name | Group Name | |
| ProductionPlant | mpe_sfi_oai_grp | werks | Receiving Plant | |
| WorkCenterInternalID | mpe_sfi_oai_grp | arbid | WorkCtrGp plan. | |
| RepresentativeShopFloorItem | mpe_sfi_oai_grp | rprstv_sfi_id | Rprstv.Serial.Mat. | |
| RprstvOpActyNtwkInstance | mpe_sfi_oai_grp | rprstv_oan_instance_id | Representative OAN | |
| RprstvOpActyNtwkElement | mpe_sfi_oai_grp | rprstv_oan_element_number | Representative Elmnt | |
| CreatedByUser | mpe_sfi_oai_grp | created_by | Version Created By | |
| CreationDateTime | mpe_sfi_oai_grp | created_at | Uploaded On | |
| LastChangedByUser | mpe_sfi_oai_grp | changed_by | User Name | |
| LastChangeDateTime | mpe_sfi_oai_grp | changed_at | Timestamp | |
| SourceOpActySFIGroup | mpe_sfi_oai_grp | source_sfi_group_id | ||
| _ProductionPlant | _ProductionPlant | |||
| _WorkCenterByInternalID | _WorkCenterByInternalID | |||
| _RepresentativeShopFloorItem | _RepresentativeShopFloorItem | |||
| _RprstvOpActyNtwkInstance | _RprstvOpActyNtwkInstance | |||
| _RprstvOpActyInstance | _RprstvOpActyInstance | |||
| _RprstvSFIAtOpActyStatus | _RprstvSFIAtOpActyStatus | |||
| _SourceOpActySFIGroup | _SourceOpActySFIGroup |
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_OperationActivitySFIGroup.
-- 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: IMPEOASFIGRP
CREATE VIEW I_OperationActivitySFIGroup AS
SELECT
grp.sfi_group_id AS OperationActivitySFIGroup,
grp.sfi_group_name AS OpActySFIGroupName,
grp.werks AS ProductionPlant,
grp.arbid AS WorkCenterInternalID,
grp.rprstv_sfi_id AS RepresentativeShopFloorItem,
grp.rprstv_oan_instance_id AS RprstvOpActyNtwkInstance,
grp.rprstv_oan_element_number AS RprstvOpActyNtwkElement,
grp.created_by AS CreatedByUser,
grp.created_at AS CreationDateTime,
grp.changed_by AS LastChangedByUser,
grp.changed_at AS LastChangeDateTime,
grp.source_sfi_group_id AS SourceOpActySFIGroup
FROM mpe_sfi_oai_grp AS grp
LEFT OUTER JOIN I_ShopFloorItem AS _RepresentativeShopFloorItem ON RepresentativeShopFloorItem = _RepresentativeShopFloorItem.ShopFloorItem -- association [1..1]
LEFT OUTER JOIN I_OpActyNtwkInstance AS _RprstvOpActyNtwkInstance ON RprstvOpActyNtwkInstance = _RprstvOpActyNtwkInstance.OpActyNtwkInstance -- association [0..1]
LEFT OUTER JOIN I_OperationActivityInstance AS _RprstvOpActyInstance ON RprstvOpActyNtwkInstance = _RprstvOpActyInstance.OpActyNtwkInstance AND RprstvOpActyNtwkElement = _RprstvOpActyInstance.OpActyNtwkElement -- association [0..1]
LEFT OUTER JOIN I_ShopFloorItemStatus AS _RprstvSFIAtOpActyStatus ON RepresentativeShopFloorItem = _RprstvSFIAtOpActyStatus.ShopFloorItem AND RprstvOpActyNtwkInstance = _RprstvSFIAtOpActyStatus.OpActyNtwkInstance AND RprstvOpActyNtwkElement = _RprstvSFIAtOpActyStatus.OpActyNtwkElement -- association [0..1]
LEFT OUTER JOIN I_Plant AS _ProductionPlant ON ProductionPlant = _ProductionPlant.Plant -- association [1..1]
LEFT OUTER JOIN I_WorkCenter AS _WorkCenterByInternalID ON _WorkCenterByInternalID.WorkCenterTypeCode = 'A ' AND WorkCenterInternalID = _WorkCenterByInternalID.WorkCenterInternalID -- association [0..1]
LEFT OUTER JOIN I_OperationActivitySFIGroup AS _SourceOpActySFIGroup ON SourceOpActySFIGroup = _SourceOpActySFIGroup.OperationActivitySFIGroup -- 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