I_OrderProcessingGroup
Order Processing Group
I_OrderProcessingGroup is a Basic CDS View (Dimension) that provides data about "Order Processing Group" in SAP S/4HANA. It reads from 1 data source (tko08) and exposes 6 fields with key fields ControllingArea, OrderProcessingGroup. It has 2 associations to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tko08 | tko08 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ControllingArea | _ControllingArea | $projection.ControllingArea = _ControllingArea.ControllingArea |
| [0..*] | I_OrderProcessingGroupText | _Text | $projection.ControllingArea = _Text.ControllingArea and $projection.OrderProcessingGroup = _Text.OrderProcessingGroup |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIORDPROCGGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | false | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Order Processing Group | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | OrderProcessingGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | kokrs | ||
| KEY | OrderProcessingGroup | abkrs | ||
| OrdProcgGrpForSettlmtToCostCtr | aumlg | |||
| OrdProcgGrpForSettlmtToGLAcct | asach | |||
| _ControllingArea | _ControllingArea | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IFIORDPROCGGRP'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: false }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Order Processing Group'
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'OrderProcessingGroup'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.buffering: {type: #GENERIC, numberOfKeyFields: 1, status: #ACTIVE}
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET]
define view I_OrderProcessingGroup
as select from tko08
association [0..1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
association [0..*] to I_OrderProcessingGroupText as _Text on $projection.ControllingArea = _Text.ControllingArea
and $projection.OrderProcessingGroup = _Text.OrderProcessingGroup
{
@ObjectModel.foreignKey.association: '_ControllingArea'
key kokrs as ControllingArea,
key abkrs as OrderProcessingGroup,
aumlg as OrdProcgGrpForSettlmtToCostCtr,
asach as OrdProcgGrpForSettlmtToGLAcct,
_ControllingArea,
_Text
}
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