I_RU_TaxCodeValueHelp
RU Tax codes
I_RU_TaxCodeValueHelp is a Basic CDS View that provides data about "RU Tax codes" in SAP S/4HANA. It reads from 1 data source (I_TaxCode) and exposes 3 fields with key fields TaxCalculationProcedure, TaxCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TaxCode | I_TaxCode | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRUTAXCODEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | RU Tax codes | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| ObjectModel.representativeKey | TaxCode | view |
@AbapCatalog.sqlViewName: 'IRUTAXCODEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'RU Tax codes'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.representativeKey: 'TaxCode'
define view I_RU_TaxCodeValueHelp
as select from I_TaxCode
association [0..1] to I_Country on $projection.TaxCalculationProcedure = I_Country.TaxCalculationProcedure
{
key I_TaxCode.TaxCalculationProcedure,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key I_TaxCode.TaxCode,
_Text[1:Language = $session.system_language].TaxCodeName
}
where I_Country.Country = 'RU'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COUNTRY",
"I_TAXCODE",
"I_TAXCODETEXT"
],
"ASSOCIATED":
[
"I_COUNTRY"
],
"BASE":
[],
"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