I_TaxCountryValueHelp

DDL: I_TAXCOUNTRYVALUEHELP Type: view COMPOSITE

Tax Country/Region

I_TaxCountryValueHelp is a Composite CDS View that provides data about "Tax Country/Region" in SAP S/4HANA. It reads from 1 data source (I_Country) and exposes 2 fields with key field TaxCountry.

Data Sources (1)

SourceAliasJoin Type
I_Country I_Country from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ITXCTRYVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey TaxCountry view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
EndUserText.label Tax Country/Region view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TaxCountry
_Text _Text
@AbapCatalog: {
               sqlViewName: 'ITXCTRYVH',
               preserveKey: true,
               compiler.compareFilter: true
              }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel: { dataCategory: #VALUE_HELP ,
                representativeKey: 'TaxCountry',
                modelingPattern: #ANALYTICAL_DIMENSION ,
                supportedCapabilities: [#ANALYTICAL_DIMENSION,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY,
                                        #SQL_DATA_SOURCE,
                                        #VALUE_HELP_PROVIDER] ,
                usageType: { serviceQuality: #A,
                             dataClass: #MASTER ,
                             sizeCategory: #S }
             }
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@Consumption.ranked: true
@EndUserText.label: 'Tax Country/Region'
define view I_TaxCountryValueHelp
  as select from I_Country
{
      @ObjectModel.text.association: '_Text'
      @Search:{ defaultSearchElement: true,
                ranking: #HIGH }
  key cast( Country as txrg_tax_ctry preserving type ) as TaxCountry,
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COUNTRY"
],
"ASSOCIATED":
[
"I_COUNTRYTEXT"
],
"BASE":
[
"I_COUNTRY"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/