C_BPTaxCodeTextValueHelp

DDL: C_BPTAXCODETEXTVALUEHELP SQL: CBPTAXCODETEXTVH Type: view CONSUMPTION

tax code text value help

C_BPTaxCodeTextValueHelp is a Consumption CDS View that provides data about "tax code text value help" in SAP S/4HANA. It reads from 1 data source (I_TaxGroupingCodeText) and exposes 5 fields with key fields AccountType, Language, TaxGroupingCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_TaxGroupingCodeText _TaxGroupingCodeText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CBPTAXCODETEXTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
EndUserText.label tax code text value help view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey TaxGroupingCode view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountType
KEY Language
KEY TaxGroupingCode
TaxCodeDescription
_Language _Language
@AbapCatalog.sqlViewName: 'CBPTAXCODETEXTVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'tax code text value help'
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'TaxGroupingCode'
define view C_BPTaxCodeTextValueHelp
  as select from I_TaxGroupingCodeText as _TaxGroupingCodeText
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

           @ObjectModel.text.element: 'Accounttype'
  key      cast(_TaxGroupingCodeText.AccountType as koart preserving type)            as AccountType,

           @Semantics.language: true
  key      cast(_TaxGroupingCodeText.Language as spras preserving type)               as Language,

           @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}

  key      cast(_TaxGroupingCodeText.TaxGroupingCode as taxgr preserving type)        as TaxGroupingCode,

           @Semantics.text: true
           @Search.defaultSearchElement: true
           @Search.fuzzinessThreshold: 0.8
           @Search.ranking: #HIGH
           cast(_TaxGroupingCodeText.TaxGroupingCodeText as text30 preserving type)    as TaxCodeDescription,

           _Language
}
//where

//  AccountType = 'K' 

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TAXGROUPINGCODETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/