I_Indicator

DDL: I_INDICATOR SQL: IINDICATOR Type: view BASIC Package: VDM_FND

Indicator

I_Indicator is a Basic CDS View (Dimension) that provides data about "Indicator" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field IndicatorValue. It has 1 association to related views. Part of development package VDM_FND.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Indicatortext _IndicatorText $projection.IndicatorValue = _IndicatorText.IndicatorValue

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey IndicatorValue view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.sqlViewName IINDICATOR view
EndUserText.label Indicator view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IndicatorValue
_IndicatorText _IndicatorText
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.representativeKey: 'IndicatorValue'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE ]
@AbapCatalog.sqlViewName: 'IINDICATOR'
@EndUserText.label: 'Indicator'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true 

//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'IndicatorValue'

//Commented by VDM CDS Suite Plugin:

define view I_Indicator as select from dd07l 
    association [0..*] to I_Indicatortext as _IndicatorText
      on  $projection.IndicatorValue = _IndicatorText.IndicatorValue 
{
   @ObjectModel.text.association: '_IndicatorText'
   @UI.textArrangement: #TEXT_ONLY
   key cast ( substring( domvalue_l, 1, 1 ) as xfeld ) as IndicatorValue,
   _IndicatorText
}where dd07l.domname = 'XFELD' and dd07l.as4local = 'A'