I_FinancialDataSourceVH

DDL: I_FINANCIALDATASOURCEVH Type: view_entity COMPOSITE Package: FIN_FS_ACCDIM_DB

Financial Data Source for Data Element

I_FinancialDataSourceVH is a Composite CDS View that provides data about "Financial Data Source for Data Element" in SAP S/4HANA. It reads from 1 data source (I_FinancialDataSource) and exposes 3 fields with key field FinancialDataSource. Part of development package FIN_FS_ACCDIM_DB.

Data Sources (1)

SourceAliasJoin Type
I_FinancialDataSource I_FinancialDataSource from

Annotations (13)

NameValueLevelField
EndUserText.label Financial Data Source for Data Element view
ObjectModel.representativeKey FinancialDataSource view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinancialDataSource FinancialDataSource
FinancialDataSourceName
_Text _Text
@EndUserText.label: 'Financial Data Source for Data Element'
@ObjectModel: {
    representativeKey: 'FinancialDataSource',
    dataCategory: #VALUE_HELP,
    usageType: {
    serviceQuality: #B,
    sizeCategory: #M,
    dataClass: #MASTER
    },
    modelingPattern: #VALUE_HELP_PROVIDER,
    supportedCapabilities: [#SEARCHABLE_ENTITY,
                            #VALUE_HELP_PROVIDER]
}
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #MANDATORY
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true

define view entity I_FinancialDataSourceVH
  as select from I_FinancialDataSource
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key FinancialDataSource                                                  as FinancialDataSource,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      _Text[1:Language = $session.system_language].FinancialDataSourceName as FinancialDataSourceName,
      _Text
}