A_ExciseTaxRegion

DDL: A_EXCISETAXREGION SQL: AETXREGION Type: view BASIC

Excise Tax Region

A_ExciseTaxRegion is a Basic CDS View that provides data about "Excise Tax Region" in SAP S/4HANA. It reads from 1 data source (I_ExciseTaxRegion) and exposes 4 fields with key fields Country, Region. It has 2 associations to related views. It is exposed through 1 OData service (API_EXCISETAXCOUNTRY).

Data Sources (1)

SourceAliasJoin Type
I_ExciseTaxRegion I_ExciseTaxRegion from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_ExciseTaxRegionText _RegionText $projection.Region = _RegionText.Region and $projection.Country = _RegionText.Country
[1..1] A_ExciseTaxCountry _Country $projection.Country = _Country.Country

Annotations (15)

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 AETXREGION 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
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name A_Region_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_EXCISETAXCOUNTRY API_EXCISETAXCOUNTRY V2 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country Country
KEY Region Region
_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: 'AETXREGION'
@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
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@OData.entityType.name:'A_Region_Type'


define view A_ExciseTaxRegion
  as select from I_ExciseTaxRegion
  association [0..*] to A_ExciseTaxRegionText as _RegionText on  $projection.Region  = _RegionText.Region
                                                    and $projection.Country = _RegionText.Country
  association [1..1] to A_ExciseTaxCountry    as _Country    on  $projection.Country = _Country.Country
{
  @Search.defaultSearchElement: true
  @ObjectModel.foreignKey.association: '_Country'
  key Country,
  key Region,

      _RegionText,
      _Country
}