I_BPCityTextTmp

DDL: I_BPCITYTEXTTMP SQL: IBPCITYTEXT Type: view BASIC

City Code txt

I_BPCityTextTmp is a Basic CDS View that provides data about "City Code txt" in SAP S/4HANA. It reads from 1 data source (adrcityt) and exposes 8 fields with key fields Country, BusinessPartnerCityCode, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
adrcityt adrcityt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBPCITYTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label City Code txt view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey BusinessPartnerCityCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Country country
KEY BusinessPartnerCityCode city_code Description
KEY Language langu
CityName city_name City
BPCityUpperCase mc_city
BPCityNameExtension city_ext
_Language _Language
_Country _Country
@AbapCatalog.sqlViewName: 'IBPCITYTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'City Code txt'

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

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

@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
define view I_BPCityTextTmp
  as select from adrcityt

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_Country  as _Country  on $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
  key country   as Country,
      @EndUserText.label: 'Description'
  key city_code as BusinessPartnerCityCode,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key langu     as Language,
      @Consumption.filter.hidden: true
      @Semantics.text: 'true'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.label: 'City'
      city_name as CityName,
      mc_city   as BPCityUpperCase,
      city_ext  as BPCityNameExtension,
      _Language,
      _Country
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ADRCITYT"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/