I_BusPartTelCountryPrefix

DDL: I_BUSPARTTELCOUNTRYPREFIX SQL: IBPTELCOUNTRY Type: view BASIC

Country Prefix for phone numbers

I_BusPartTelCountryPrefix is a Basic CDS View that provides data about "Country Prefix for phone numbers" in SAP S/4HANA. It reads from 1 data source (t005k) and exposes 3 fields with key field Country. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t005k t005k from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CountryText _CountryText $projection.Country = _CountryText.Country

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPTELCOUNTRY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey Country view
Search.searchable true view
EndUserText.label Country Prefix for phone numbers view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Country t005k land1
TelephoneCountryPrefix t005k telefto International Area Code
_CountryText _CountryText
@AbapCatalog.sqlViewName: 'IBPTELCOUNTRY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true 
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'Country'
@Search.searchable: true
@EndUserText.label: 'Country Prefix for phone numbers'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
define view I_BusPartTelCountryPrefix
  as select from t005k
  association [1..*] to I_CountryText as _CountryText on $projection.Country = _CountryText.Country
{
      @ObjectModel.text.association: '_CountryText'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key t005k.land1     as Country,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.label: 'International Area Code'
      @EndUserText.quickInfo: 'International Area Code'
      t005k.telefto   as TelephoneCountryPrefix,
      _CountryText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T005K"
],
"ASSOCIATED":
[
"I_COUNTRYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/