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. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TaxCode | I_TaxCode | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | TaxCode | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.modelingPattern | #VALUE_HELP_PROVIDER | view | |
| Analytics.technicalName | IFITAXCODESVH | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Tax Code | view |
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel: { dataCategory: #VALUE_HELP,
representativeKey: 'TaxCode',
usageType: { sizeCategory: #S,
dataClass: #CUSTOMIZING,
serviceQuality: #A },
supportedCapabilities: [#VALUE_HELP_PROVIDER],
modelingPattern: #VALUE_HELP_PROVIDER }
@Analytics.technicalName: 'IFITAXCODESVH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'Tax Code'
define view entity I_TaxCodeStdVH as select from I_TaxCode as 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
I_TaxCode._Text
}
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