C_StatisticalKeyFigureVH

DDL: C_STATISTICALKEYFIGUREVH SQL: CSTATKEYFIGVH Type: view CONSUMPTION Package: ODATA_STATISTICALKEYFIGURE_V2

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. It is exposed through 1 OData service (UI_FCO_MANAGE_ALLOCATION). Part of development package ODATA_STATISTICALKEYFIGURE_V2.

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

OData Services (1)

ServiceBindingVersionContractRelease
UI_FCO_MANAGE_ALLOCATION UI_FCOUA_MANAGE_ALLOCATION V2 C1 NOT_RELEASED

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,
  @Search.defaultSearchElement: true
  @ObjectModel.foreignKey.association: '_ControllingArea'
  key ControllingArea,
  
  @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.7
      }
  _Text[1:Language = $session.system_language].StatisticalKeyFigureName,
  
  @Search.defaultSearchElement: true
  cast(StstcKeyFigCategory as fis_ui_grtyp preserving type) as StstcKeyFigCategory,
  
  @Search.defaultSearchElement: true
  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
  
}