I_TaxCodeStdVH

DDL: I_TAXCODESTDVH SQL: IFITAXCODESVH Type: view COMPOSITE

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)

SourceAliasJoin Type
I_TaxCode I_TaxCode from

Annotations (16)

NameValueLevelField
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

Fields (3)

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