I_ExciseTaxRegion

DDL: I_EXCISETAXREGION SQL: IETXREGION Type: view BASIC Package: ET_COMMON

Excise Tax Region

I_ExciseTaxRegion is a Basic CDS View that provides data about "Excise Tax Region" in SAP S/4HANA. It reads from 1 data source (t005s) and exposes 4 fields with key fields Country, Region. It has 2 associations to related views. Part of development package ET_COMMON.

Data Sources (1)

SourceAliasJoin Type
t005s t005s from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ExciseTaxRegionText _RegionText $projection.Region = _RegionText.Region and $projection.Country = _RegionText.Country
[1..1] I_ExciseTaxCountry _Country $projection.Country = _Country.Country

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Region view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName IETXREGION view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Excise Tax Region view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country t005s land1
KEY Region t005s bland
_RegionText _RegionText
_Country _Country
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'Region'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'IETXREGION'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Excise Tax Region'
//@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}

@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations:true
//@Analytics.internalName:#LOCAL


define view I_ExciseTaxRegion
  as select from t005s
  association [0..*] to I_ExciseTaxRegionText as _RegionText on  $projection.Region  = _RegionText.Region
                                                    and $projection.Country = _RegionText.Country
  association [1..1] to I_ExciseTaxCountry    as _Country    on  $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
  key t005s.land1 as Country,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_RegionText'
  key t005s.bland as Region,

      _RegionText,
      _Country
}