C_StatisticalKeyFigureVH

DDL: C_STATISTICALKEYFIGUREVH SQL: CSTATKEYFIGVH Type: view CONSUMPTION

Statistical Key Figure Value Help

C_StatisticalKeyFigureVH is a Consumption CDS View that provides data about "Statistical Key Figure Value Help" in SAP S/4HANA. It reads from 1 data source (I_StatisticalKeyFigure) and exposes 7 fields with key fields StatisticalKeyFigure, ControllingArea.

Data Sources (1)

SourceAliasJoin Type
I_StatisticalKeyFigure I_StatisticalKeyFigure from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSTATKEYFIGVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey StatisticalKeyFigure view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Statistical Key Figure Value Help view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY StatisticalKeyFigure StatisticalKeyFigure
KEY ControllingArea ControllingArea
StatisticalKeyFigureName
StstcKeyFigCategory
StstcKeyFigCategoryDesc
_Text _Text
_ControllingArea _ControllingArea
@AbapCatalog.sqlViewName: 'CSTATKEYFIGVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true

@VDM.viewType: #CONSUMPTION

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'StatisticalKeyFigure'

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@Search.searchable: true

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Statistical Key Figure Value Help'
define view C_StatisticalKeyFigureVH as select from I_StatisticalKeyFigure {

  @ObjectModel.text.element: ['StatisticalKeyFigureName'] 
  @UI.textArrangement: #TEXT_LAST
  @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.7
      }
  key StatisticalKeyFigure,
  @ObjectModel.foreignKey.association: '_ControllingArea'
  key ControllingArea,
  
  @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.7
      }
  _Text[1:Language = $session.system_language].StatisticalKeyFigureName,
  
  cast(StstcKeyFigCategory as fis_ui_grtyp preserving type) as StstcKeyFigCategory,
  
  cast ( _StatisticalKeyFigureCat._Text[1:Language = $session.system_language].StstcKeyFigCategoryDesc as fco_stat_key_fig_cat_desc preserving type ) as StstcKeyFigCategoryDesc,
  
  _Text,

   //@Consumption.hidden: true

  _ControllingArea
  
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_STATISTICALKEYFIGURE",
"I_STATISTICALKEYFIGURECAT",
"I_STATISTICALKEYFIGURECATTEXT",
"I_STATISTICALKEYFIGURETEXT"
],
"ASSOCIATED":
[
"I_CONTROLLINGAREA",
"I_STATISTICALKEYFIGURETEXT"
],
"BASE":
[
"I_STATISTICALKEYFIGURE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/