I_TaxCodeStdVH
Tax code
I_TaxCodeStdVH is a Composite CDS View that provides data about "Tax code" 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 (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFITAXCODESVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | TaxCode | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Tax code | view |
@AbapCatalog.sqlViewName: 'IFITAXCODESVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.representativeKey: 'TaxCode'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel.semanticKey: ['TaxCode']
@EndUserText.label: 'Tax code'
define view I_TaxCodeStdVH as select from I_TaxCode {
// @Consumption.hidden: true - with this, the field is not part of the selection, not used in the text association and execution of VH will return non-deterministic texts
// @UI.hidden: true - UI hidden will be defined in additional view I_TaxCodeValueHelp
key I_TaxCode.TaxCalculationProcedure,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.association: '_Text'
key I_TaxCode.TaxCode,
@Consumption.hidden: true
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TAXCODE"
],
"ASSOCIATED":
[
"I_TAXCODETEXT"
],
"BASE":
[
"I_TAXCODE"
],
"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