I_ProcessOrderOperation
Interface View for Process Order Operation
I_ProcessOrderOperation is a Basic CDS View (Dimension) that provides data about "Interface View for Process Order Operation" in SAP S/4HANA. It reads from 2 data sources (afko, afvc) and exposes 8 fields with key fields OrderID, OrderOperation. It has 1 association to related views. Part of development package ODATA_PRODUCTION_COST_ANALYSIS.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ProductCostCtrlgOrder | _CtrlgOrder | $projection.OrderID = _CtrlgOrder.OrderID |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIPROCORDOPER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | OrderOperation | view | |
| EndUserText.label | Interface View for Process Order Operation | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Metadata.allowExtensions | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | afko | aufnr | |
| KEY | OrderOperation | afvc | vornr | Operation |
| OrderType | _CtrlgOrder | OrderType | ||
| OrderCategory | _CtrlgOrder | OrderCategory | ||
| Plant | _CtrlgOrder | Plant | ||
| OperationDescription | afvc | ltxa1 | ||
| Language | ||||
| _CtrlgOrder | _CtrlgOrder |
@AbapCatalog.sqlViewName: 'IFIPROCORDOPER'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'OrderOperation'
@EndUserText.label: 'Interface View for Process Order Operation'
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@Metadata.allowExtensions:true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
define view I_ProcessOrderOperation
as select from afvc as afvc
inner join afko as afko on afvc.aufpl = afko.aufpl
and afko.plnaw = 'C'
association [0..1] to I_ProductCostCtrlgOrder as _CtrlgOrder on $projection.OrderID = _CtrlgOrder.OrderID
{
@ObjectModel.foreignKey.association: '_CtrlgOrder'
key afko.aufnr as OrderID,
@EndUserText.label: 'Operation'
key afvc.vornr as OrderOperation,
_CtrlgOrder.OrderType,
_CtrlgOrder.OrderCategory,
_CtrlgOrder.Plant,
afvc.ltxa1 as OperationDescription,
cast(afvc.txtsp as spras) as Language,
_CtrlgOrder
}
where
afvc.sumnr = '00000000'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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