I_RegionText

DDL: I_REGIONTEXT Type: view_entity BASIC

Region - Text

I_RegionText is a Basic CDS View that provides data about "Region - Text" in SAP S/4HANA. It reads from 1 data source (t005u) and exposes 7 fields with key fields Country, Region, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t005u t005u from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Region _Region $projection.Region = _Region.Region and $projection.Country = _Region.Country
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IREGIONTEXT view
ObjectModel.representativeKey Region view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Region - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Country t005u land1
KEY Region t005u bland
KEY Language t005u spras
RegionName t005u bezei
_Region _Region
_Language _Language
_Country _Country
@ObjectModel.dataCategory: #TEXT 
@Analytics.technicalName: 'IREGIONTEXT'
@ObjectModel.representativeKey: 'Region'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #LANGUAGE_DEPENDENT_TEXT]
@EndUserText.label: 'Region - Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable:                true

define view entity I_RegionText
  as select from t005u
  association [0..1] to I_Region   as _Region   on  $projection.Region  = _Region.Region
                                                and $projection.Country = _Region.Country
  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 t005u.land1 as Country,
      @ObjectModel.foreignKey.association: '_Region'
  key t005u.bland as Region,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key t005u.spras as Language,
      @Semantics.text
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW 
      t005u.bezei as RegionName,
      _Region,
      _Language,
      _Country
}