I_StatisticalKeyFigureText

DDL: I_STATISTICALKEYFIGURETEXT SQL: IFISTSTCKEYFIGT Type: view BASIC Package: FINS_STSTCL_KEY_FIGURE_VDM

Statistical Key Figure - Text

I_StatisticalKeyFigureText is a Basic CDS View that provides data about "Statistical Key Figure - Text" in SAP S/4HANA. It reads from 1 data source (tkt03) and exposes 6 fields with key fields Language, ControllingArea, StatisticalKeyFigure. Part of development package FINS_STSTCL_KEY_FIGURE_VDM.

Data Sources (1)

SourceAliasJoin Type
tkt03 tkt03 from

Annotations (17)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey StatisticalKeyFigure view
EndUserText.label Statistical Key Figure - Text view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName IFISTSTCKEYFIGT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY ControllingArea
KEY StatisticalKeyFigure
StatisticalKeyFigureName
_ControllingArea _ControllingArea
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'StatisticalKeyFigure'
@EndUserText.label: 'Statistical Key Figure - Text'
@Analytics.dataExtraction.enabled: true
@AbapCatalog.sqlViewName: 'IFISTSTCKEYFIGT'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@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, #EXTRACTION_DATA_SOURCE]


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
}