I_RELocalTaxMap
Local Tax Group
I_RELocalTaxMap is a Basic CDS View (Dimension) that provides data about "Local Tax Group" in SAP S/4HANA. It reads from 4 data sources (t005, tivrataxtype, t007a, tivexfitaxmap) and exposes 9 fields with key fields Country, RETaxType, RETaxGroup, ValidityStartDate. It has 2 associations to related views.
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| t005 | country_data | inner |
| tivrataxtype | RETaxType | inner |
| t007a | tax_code | inner |
| tivexfitaxmap | tivexfitaxmap | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_RETaxGroup | _RETaxGroup | tivexfitaxmap.taxgroup = _RETaxGroup.TaxGroup |
| [0..1] | I_Country | _Country | $projection.Country = _Country.Country |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRETAXMAP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Local Tax Group | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | RETaxGroup | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | tivexfitaxmap | country | Venue: Ctry/Reg |
| KEY | RETaxType | tivexfitaxmap | taxtype | Tax Type |
| KEY | RETaxGroup | tivexfitaxmap | taxgroup | Tax Group |
| KEY | ValidityStartDate | Vers.Valid From | ||
| ValidityEndDate | Vers.Valid To | |||
| TaxCode | tivexfitaxmap | taxcode | Tax Code | |
| REIsExclForNewAssgmt | t007a | xinact | Inactive | |
| _RETaxGroup | _RETaxGroup | |||
| _Country | _Country |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_RELocalTaxMap.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IRETAXMAP
CREATE VIEW I_RELocalTaxMap AS
SELECT
tivexfitaxmap.country AS Country,
tivexfitaxmap.taxtype AS RETaxType,
tivexfitaxmap.taxgroup AS RETaxGroup,
cast(validfrom as rebdvdmvalidfrom) AS ValidityStartDate,
cast(validto as rebdvdmvalidto) AS ValidityEndDate,
tivexfitaxmap.taxcode AS TaxCode,
tax_code.xinact AS REIsExclForNewAssgmt
FROM tivexfitaxmap
INNER JOIN t007a AS tax_code ON /* join condition not captured in parsed metadata */
INNER JOIN t005 AS country_data ON /* join condition not captured in parsed metadata */
INNER JOIN tivrataxtype AS RETaxType ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_RETaxGroup AS _RETaxGroup ON tivexfitaxmap.taxgroup = _RETaxGroup.TaxGroup -- association [0..1]
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country -- association [0..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA