I_OperatingConcern

DDL: I_OPERATINGCONCERN SQL: IFIOPERCONCERN Type: view BASIC

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)

SourceAliasJoin Type
tkeb tkeb from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OperatingConcernText _Text $projection.OperatingConcern = _Text.OperatingConcern

Annotations (14)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
};