I_TaxCountryValueHelp
Tax Country/Region
I_TaxCountryValueHelp is a Composite CDS View that provides data about "Tax Country/Region" in SAP S/4HANA. It reads from 1 data source (I_Country) and exposes 2 fields with key field TaxCountry.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Country | I_Country | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITXCTRYVH | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | TaxCountry | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Tax Country/Region | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TaxCountry | |||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'ITXCTRYVH',
preserveKey: true,
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel: { dataCategory: #VALUE_HELP ,
representativeKey: 'TaxCountry',
modelingPattern: #ANALYTICAL_DIMENSION ,
supportedCapabilities: [#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE,
#VALUE_HELP_PROVIDER] ,
usageType: { serviceQuality: #A,
dataClass: #MASTER ,
sizeCategory: #S }
}
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@Consumption.ranked: true
@EndUserText.label: 'Tax Country/Region'
define view I_TaxCountryValueHelp
as select from I_Country
{
@ObjectModel.text.association: '_Text'
@Search:{ defaultSearchElement: true,
ranking: #HIGH }
key cast( Country as txrg_tax_ctry preserving type ) as TaxCountry,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COUNTRY"
],
"ASSOCIATED":
[
"I_COUNTRYTEXT"
],
"BASE":
[
"I_COUNTRY"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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