I_TaxingCountyText

DDL: I_TAXINGCOUNTYTEXT Type: view_entity BASIC

Description of Taxing County

I_TaxingCountyText is a Basic CDS View that provides data about "Description of Taxing County" in SAP S/4HANA. It reads from 1 data source (t005f) and exposes 8 fields with key fields Language, Country, Region, TaxingCounty. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t005f t005f from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Country _Country $projection.Country = _Country.Country
[1..1] I_Region _Region $projection.Region = _Region.Region and $projection.Country = _Region.Country
[1..1] I_TaxingCounty _TaxingCounty $projection.Country = _TaxingCounty.Country and $projection.Region = _TaxingCounty.Region and $projection.TaxingCounty = _TaxingCounty.TaxingCounty

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName ITAXINGCOUNTYTXT view
EndUserText.label Description of Taxing County view
ObjectModel.representativeKey TaxingCounty view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY Country land1
KEY Region regio
KEY TaxingCounty counc
TaxingCountyName bezei
_Country _Country
_Region _Region
_TaxingCounty _TaxingCounty
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.technicalName: 'ITAXINGCOUNTYTXT'
@EndUserText.label: 'Description of Taxing County'
@ObjectModel.representativeKey: 'TaxingCounty'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET,#LANGUAGE_DEPENDENT_TEXT]
@Search.searchable: true
@VDM.viewType: #BASIC
define view entity I_TaxingCountyText
  as select from t005f
  association [1..1] to I_Country      as _Country      on  $projection.Country = _Country.Country

  association [1..1] to I_Region       as _Region       on  $projection.Region  = _Region.Region
                                                        and $projection.Country = _Region.Country

  association [1..1] to I_TaxingCounty as _TaxingCounty on  $projection.Country      = _TaxingCounty.Country
                                                        and $projection.Region       = _TaxingCounty.Region
                                                        and $projection.TaxingCounty = _TaxingCounty.TaxingCounty
{
      @Semantics.language: true
  key spras as Language,
      @ObjectModel.foreignKey.association: '_Country'
  key land1 as Country,
      @ObjectModel.foreignKey.association: '_Region'
  key regio as Region,
  key counc as TaxingCounty,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      bezei as TaxingCountyName,
      _Country,
      _Region,
      _TaxingCounty
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T005F"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_REGION",
"I_TAXINGCOUNTY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/