C_RegionTextVHTemp

DDL: C_REGIONTEXTVHTEMP SQL: CREGIONTEXT Type: view CONSUMPTION

C_RegionTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_RegionText) and exposes 5 fields with key fields Country, Language, Region. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_RegionText I_RegionText from

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CREGIONTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey Region view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country
KEY Language Language
KEY Region Region
RegionName RegionName Region Name
_Country _Country
@AbapCatalog.sqlViewName: 'CREGIONTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.representativeKey: 'Region'

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER

define view C_RegionTextVHTemp
  as select from I_RegionText
  association [0..1] to I_Country as _Country on $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
  key Country,
      @Semantics.language: true
  key Language,
  key Region,
      @Semantics.text: 'true'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.label: 'Region Name'
      @Consumption.filter.hidden: true
      RegionName,
      _Country

} 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_REGIONTEXT"
],
"ASSOCIATED":
[
"I_COUNTRY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/