I_PrepaymentRegionText

DDL: I_PREPAYMENTREGIONTEXT SQL: IPPAREGIONTEXT Type: view BASIC

Region Text

I_PrepaymentRegionText 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 (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Region view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName IPPAREGIONTEXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true 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

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
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'Region'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'IPPAREGIONTEXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Region Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true

define view I_PrepaymentRegionText
  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
      t005u.bezei as RegionName,
    
      _Region,
      _Language,
      _Country
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T005U"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_LANGUAGE",
"I_REGION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/