I_REGIONTEXT

CDS View

Region - Text

I_REGIONTEXT is a CDS View in S/4HANA. Region - Text. It contains 1 fields. 6 CDS views read from this table.

CDS Views using this table (6)

ViewTypeJoinVDMDescription
C_House_Bank_App view left_outer CONSUMPTION House Bank Consumption view
C_RegionTextVHTemp view from CONSUMPTION
CIC_COUNTRY_SUBDIV_TEXT view_entity from CIC Projection on Country Subdivision Code Text
I_US_TaxStateText view from BASIC US External Tax State - Text
P_Plant_Fs view left_outer BASIC
P_Supplier_Fs view left_outer BASIC

Fields (1)

KeyField CDS FieldsUsed in Views
RegionName RegionName 1
@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
}