A_ExciseTaxCountryText

DDL: A_EXCISETAXCOUNTRYTEXT SQL: AETXCOUNTRYTEXT Type: view BASIC

Excise Tax Country/Region Text

A_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 (I_ExciseTaxCountryText) and exposes 7 fields with key fields Country, Language. It has 1 association to related views. It is exposed through 1 OData service (API_EXCISETAXCOUNTRY).

Data Sources (1)

SourceAliasJoin Type
I_ExciseTaxCountryText I_ExciseTaxCountryText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_ExciseTaxCountry _Country $projection.Country = _Country.Country

Annotations (16)

NameValueLevelField
EndUserText.label Excise Tax Country/Region Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AETXCOUNTRYTEXT 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
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
OData.entityType.name A_CountryText_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_EXCISETAXCOUNTRY API_EXCISETAXCOUNTRY V2 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Country Country
KEY Language Language
CountryName CountryName
NationalityName NationalityName
NationalityLongName NationalityLongName
CountryShortName CountryShortName
_Country _Country
@EndUserText.label: 'Excise Tax Country/Region Text'
//@Analytics: { dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AETXCOUNTRYTEXT'
@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.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@OData.entityType.name:'A_CountryText_Type'

define view A_ExciseTaxCountryText
  as select from I_ExciseTaxCountryText
  association [0..1] to A_ExciseTaxCountry  as _Country  on $projection.Country = _Country.Country
{
      @Search.defaultSearchElement: true
   key Country,
      @Semantics.language
   key Language,
      @Semantics.text: true
      CountryName,

      NationalityName,
      NationalityLongName,
      CountryShortName,

      _Country
 
}