I_OperatingConcern
Operating Concern
I_OperatingConcern is a Basic CDS View (Dimension) that provides data about "Operating Concern" in SAP S/4HANA. It reads from 1 data source (tkeb) and exposes 3 fields with key field OperatingConcern. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tkeb | tkeb | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_OperatingConcernText | _Text | $projection.OperatingConcern = _Text.OperatingConcern |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.representativeKey | OperatingConcern | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Operating Concern | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIOPERCONCERN | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OperatingConcern | erkrs | ||
| OperatingConcernName | ||||
| _Text | _Text |
@ObjectModel.representativeKey: 'OperatingConcern' //Inserted by VDM CDS Suite Plugin
@AccessControl.authorizationCheck: #CHECK //NOT_REQUIRED
@EndUserText.label: 'Operating Concern'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIOPERCONCERN'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
define view I_OperatingConcern
as select from tkeb
association [0..*] to I_OperatingConcernText as _Text on $projection.OperatingConcern = _Text.OperatingConcern
{
@ObjectModel.text.element: ['OperatingConcernName']
key erkrs as OperatingConcern,
@Semantics.text: true
_Text[1:Language = $session.system_language].OperatingConcernName as OperatingConcernName,
_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