I_TaxationTypeText

DDL: I_TAXATIONTYPETEXT Type: view BASIC

Taxation Type - Text

I_TaxationTypeText is a Basic CDS View that provides data about "Taxation Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields TaxationType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ITXNTYPTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Taxation Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey TaxationType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #BASIC view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY TaxationType
KEY Language
TaxationTypeDescription
DomainValue dd07t domvalue_l
_TaxationType _TaxationType
_Language _Language
@AbapCatalog: { sqlViewName: 'ITXNTYPTEXT' ,
                compiler.compareFilter: true ,
                preserveKey: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Taxation Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { dataCategory: #TEXT ,
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY,
                                        #SQL_DATA_SOURCE] ,
                representativeKey: 'TaxationType',
                usageType: { serviceQuality: #A ,
                             dataClass: #META ,
                             sizeCategory: #S } }
@Search.searchable: true
@VDM:{ viewType: #BASIC }
@Consumption.ranked: true
define view I_TaxationTypeText
  as select from dd07t

  association        to parent I_TaxationType as _TaxationType on $projection.TaxationType = _TaxationType.TaxationType

  association [0..1] to I_Language            as _Language     on $projection.Language = _Language.Language

{
      @ObjectModel:{ foreignKey.association: '_TaxationType' ,
                     text.element: ['TaxationTypeDescription'] }
  key cast ( dd07t.domvalue_l as txrg_txn_type )        as TaxationType,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type ) as Language,
      @Search:{ defaultSearchElement: true,
                 fuzzinessThreshold: 0.8,
                 ranking: #LOW }
      @Semantics.text: true
      cast ( dd07t.ddtext as  txrg_txn_type_text )      as TaxationTypeDescription,
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l                                  as DomainValue,
      _TaxationType,
      _Language

}
where
      dd07t.domname  = 'TXRG_TXN_TYPE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TAXATIONTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/