I_ExciseTaxRegion
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)
| Source | Alias | Join Type |
|---|---|---|
| t005s | t005s | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ExciseTaxRegionText | _RegionText | $projection.Region = _RegionText.Region and $projection.Country = _RegionText.Country |
| [1..1] | I_ExciseTaxCountry | _Country | $projection.Country = _Country.Country |
Annotations (13)
| 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 | 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 |
@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
}
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