C_BankAcctTextVhTemp

DDL: C_BANKACCTTEXTVHTEMP SQL: CBNKACCTXTVHTEMP Type: view CONSUMPTION Package: VDM_MD_BP

Bank Text Value Help

C_BankAcctTextVhTemp is a Consumption CDS View that provides data about "Bank Text Value Help" in SAP S/4HANA. It reads from 1 data source (I_CountryText) and exposes 3 fields with key fields BankCountryKey, Language. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
I_CountryText CountryText from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CBNKACCTXTVHTEMP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey BankCountryKey view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankCountryKey I_CountryText Country
KEY Language I_CountryText Language
CountryNameasCountryNamebankcountryname Country/Region Name
@AbapCatalog.sqlViewName: 'CBNKACCTXTVHTEMP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'BankCountryKey'
@Search.searchable: true

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER

define view C_BankAcctTextVhTemp
  as select from I_CountryText as CountryText
{

  key CountryText.Country   as BankCountryKey,
      @Semantics.language: true
  key CountryText.Language   as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.label: 'Country/Region Name'
      CountryText.CountryName as CountryName --bank country name
}