I_CityCode

DDL: I_CITYCODE SQL: ICITYCODE Type: view BASIC

City Code

I_CityCode is a Basic CDS View (Dimension) that provides data about "City Code" in SAP S/4HANA. It reads from 1 data source (t005g) and exposes 6 fields with key fields Country, Region, CityCode. It has 3 associations to related views. It is exposed through 1 OData service (C_BILLGDOCREDACTED_SD).

Data Sources (1)

SourceAliasJoin Type
t005g t005g from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_CityCodeText _Text $projection.Country = _Text.Country and $projection.Region = _Text.Region and $projection.CityCode = _Text.CityCode
[1..1] I_Region _Region $projection.Region = _Region.Region and $projection.Country = _Region.Country
[1..1] I_Country _Country $projection.Country = _Country.Country

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CityCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName ICITYCODE view
EndUserText.label City Code view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
C_BILLGDOCREDACTED_SD C_BILLGDOCREDACTED V2 C1 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Country land1
KEY Region regio
KEY CityCode cityc
_Text _Text
_Region _Region
_Country _Country
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'CityCode'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ICITYCODE'
@EndUserText.label: 'City Code'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable: true

define view I_CityCode
  as select from t005g
  association [0..*] to I_CityCodeText as _Text    on  $projection.Country  = _Text.Country
                                                   and $projection.Region   = _Text.Region
                                                   and $projection.CityCode = _Text.CityCode
  association [1..1] to I_Region       as _Region  on  $projection.Region  = _Region.Region
                                                   and $projection.Country = _Region.Country
  association [1..1] to I_Country      as _Country on  $projection.Country = _Country.Country
{
      @Search.defaultSearchElement: true
      @ObjectModel.foreignKey.association: '_Country'     
  key land1 as Country,
      @Search.defaultSearchElement: true
      @ObjectModel.foreignKey.association: '_Region'
  key regio as Region,
      @Search.defaultSearchElement: true
      @ObjectModel.text.association: '_Text'
  key cityc as CityCode,
      _Text,
      _Region,
      _Country
}