I_STATISTICALKEYFIGURETEXT

CDS View

Statistical Key Figure - Text

I_STATISTICALKEYFIGURETEXT is a CDS View in S/4HANA. Statistical Key Figure - Text. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
A_StatisticalKeyFigureText view from BASIC Statistical Key Figure Text
I_StatisticalKeyFigureTextTP view from TRANSACTIONAL Languages
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'StatisticalKeyFigure'
@EndUserText.label: 'Statistical Key Figure - Text'
@Analytics.dataExtraction.enabled: true
@AbapCatalog.sqlViewName: 'IFISTSTCKEYFIGT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@AbapCatalog.buffering: {type: #GENERIC, numberOfKeyFields: 1, status: #ACTIVE}
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,#LANGUAGE_DEPENDENT_TEXT]


define view I_StatisticalKeyFigureText as select from tkt03 
association[1] to I_ControllingArea as _ControllingArea 
    on $projection.ControllingArea  = _ControllingArea.ControllingArea

association[0..1] to I_Language as _Language 
    on $projection.Language         = _Language.Language
{
    @Semantics.language
@ObjectModel.foreignKey.association: '_Language' //Inserted by VDM CDS Suite Plugin

    key spras as Language,
@ObjectModel.foreignKey.association: '_ControllingArea' //Inserted by VDM CDS Suite Plugin

    key cast(kokrs as fis_kokrs preserving type ) as ControllingArea,
    key cast(stagr as fis_stagr preserving type ) as StatisticalKeyFigure,
    @Semantics.text
    cast(bezei as fis_ui_stagr_text preserving type ) as StatisticalKeyFigureName,
    
    _ControllingArea,
    _Language
}