I_ExciseTaxCountryText

DDL: I_EXCISETAXCOUNTRYTEXT SQL: IETXCOUNTRYTEXT Type: view BASIC

Excise Tax Country/Region - Text

I_ExciseTaxCountryText is a Basic CDS View that provides data about "Excise Tax Country/Region - Text" in SAP S/4HANA. It reads from 1 data source (t005t) and exposes 8 fields with key fields Country, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t005t t005t from

Associations (2)

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

Annotations (18)

NameValueLevelField
EndUserText.label Excise Tax Country/Region - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.sqlViewName IETXCOUNTRYTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Country view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Country land1
KEY Language spras
CountryName landx50
NationalityName natio
NationalityLongName natio50
CountryShortName landx
_Country _Country
_Language _Language
@EndUserText.label: 'Excise Tax Country/Region - Text'
//@Analytics: { dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.sqlViewName: 'IETXCOUNTRYTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'Country'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #GENERIC
@AbapCatalog.buffering.numberOfKeyFields: 2
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.compiler.compareFilter:true 
@AbapCatalog.preserveKey:true

define view I_ExciseTaxCountryText
  as select from t005t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_ExciseTaxCountry  as _Country  on $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
  key land1   as Country,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key spras   as Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      landx50 as CountryName,

      natio   as NationalityName,
      natio50 as NationalityLongName,
      landx   as CountryShortName,

      _Country,
      _Language

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