I_ABCIndicatorText

DDL: I_ABCINDICATORTEXT SQL: IABCINDICTEXT Type: view BASIC

ABC Indicator - Text

I_ABCIndicatorText is a Basic CDS View that provides data about "ABC Indicator - Text" in SAP S/4HANA. It reads from 1 data source (t370c_t) and exposes 5 fields with key fields ABCIndicator, Language.

Data Sources (1)

SourceAliasJoin Type
t370c_t t370c_t from

Annotations (13)

NameValueLevelField
EndUserText.label ABC Indicator - Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IABCINDICTEXT view
AbapCatalog.compiler.compareFilter true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ABCIndicator view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ABCIndicator t370c_t abckz
KEY Language t370c_t spras
ABCIndicatorDesc ABC Indicator Text
_ABCIndicator _ABCIndicator
_Language _Language
@EndUserText.label: 'ABC Indicator - Text'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IABCINDICTEXT'
@AbapCatalog.compiler.compareFilter: true
@Analytics: { dataExtraction.enabled: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'ABCIndicator',
  semanticKey:  [ 'ABCIndicator' ],
  usageType: {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #A
  }
}

@Metadata.ignorePropagatedAnnotations
@Search.searchable: true
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]


define view I_ABCIndicatorText as select from t370c_t
association[0..1] to I_ABCIndicator as _ABCIndicator on $projection.ABCIndicator = _ABCIndicator.ABCIndicator
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language{
    
    @ObjectModel.foreignKey.association: '_ABCIndicator'
    @ObjectModel.text.element: ['ABCIndicatorDesc']
    key t370c_t.abckz as ABCIndicator,
    
    @ObjectModel.foreignKey.association: '_Language'
    @Semantics.language: true
    key t370c_t.spras as Language, 
    
    @Semantics.text: true
    @EndUserText.label: 'ABC Indicator Text'
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.8
    @Search.ranking: #HIGH
    
    cast( t370c_t.abctx as eams_abctx preserving type ) as ABCIndicatorDesc,
    
    _ABCIndicator,
    _Language
}