A_ExciseTaxRegion
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)
| Source | Alias | Join Type |
|---|---|---|
| I_ExciseTaxRegion | I_ExciseTaxRegion | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_ExciseTaxRegionText | _RegionText | $projection.Region = _RegionText.Region and $projection.Country = _RegionText.Country |
| [1..1] | A_ExciseTaxCountry | _Country | $projection.Country = _Country.Country |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_EXCISETAXCOUNTRY | API_EXCISETAXCOUNTRY | V2 | C2 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA