I_TaxCodeStdVH

DDL: I_TAXCODESTDVH Type: view_entity COMPOSITE Package: FINS_FIS_FICO

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)

SourceAliasJoin Type
I_TaxCode I_TaxCode from

Annotations (14)

NameValueLevelField
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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY TaxCalculationProcedure I_TaxCode TaxCalculationProcedure
KEY TaxCode I_TaxCode TaxCode
_Text I_TaxCode _Text
@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
    
}