I_FinancialInstrTransTypeText

DDL: I_FINANCIALINSTRTRANSTYPETEXT SQL: IFININSTRTPTXT Type: view BASIC

Transaction Type - Text

I_FinancialInstrTransTypeText is a Basic CDS View that provides data about "Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (at10t) and exposes 7 fields with key fields Language, FinancialInstrumentProductType, FinancialInstrTransactionType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
at10t FinancialInstrTransTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_FinancialInstrTransType _FinancialInstrTransType $projection.FinancialInstrTransactionType = _FinancialInstrTransType.FinancialInstrTransactionType and $projection.FinancialInstrumentProductType = _FinancialInstrTransType.FinancialInstrumentProductType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFININSTRTPTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Transaction Type - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinancialInstrTransactionType view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language at10t spras
KEY FinancialInstrumentProductType at10t sgsart
KEY FinancialInstrTransactionType
FinancialInstrTransTypeName
_FinancialInstrTransType _FinancialInstrTransType
_Language _Language
_Financialinstrproducttype _Financialinstrproducttype
// harmonized annotations 

@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true  
@AbapCatalog.preserveKey: true // only if required by ATC check 

@AbapCatalog.sqlViewName: 'IFININSTRTPTXT' 
@AccessControl.authorizationCheck: #NOT_REQUIRED // according to XLS / DCL 

@ClientHandling.algorithm: #SESSION_VARIABLE 
@EndUserText.label: 'Transaction Type - Text'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FinancialInstrTransactionType'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

@VDM.viewType: #BASIC 
@Search.searchable: true
@Consumption.ranked: true

define view I_FinancialInstrTransTypeText
  as select from at10t as FinancialInstrTransTypeText

  association [0..1] to I_FinancialInstrTransType   as _FinancialInstrTransType   on  $projection.FinancialInstrTransactionType  = _FinancialInstrTransType.FinancialInstrTransactionType
                                                                                  and $projection.FinancialInstrumentProductType = _FinancialInstrTransType.FinancialInstrumentProductType
  association [0..1] to I_Language                  as _Language                  on  $projection.Language = _Language.Language
  association        to I_FinancialinstrProductType as _Financialinstrproducttype on  $projection.FinancialInstrumentProductType = _Financialinstrproducttype.FinancialInstrumentProductType
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key FinancialInstrTransTypeText.spras                                        as Language,
      @ObjectModel.foreignKey.association: '_Financialinstrproducttype'
  key FinancialInstrTransTypeText.sgsart                                       as FinancialInstrumentProductType,
      @ObjectModel.foreignKey.association: '_FinancialInstrTransType'
  key cast(FinancialInstrTransTypeText.sfhaart as ftr_gen_transaction_type preserving type)    as FinancialInstrTransactionType,

      @Semantics.text: true 
      @Search.defaultSearchElement: true 
      @Search.ranking: #LOW
      cast(FinancialInstrTransTypeText.xtext as ftr_gen_transaction_type_name preserving type) as FinancialInstrTransTypeName,

      _FinancialInstrTransType,
      _Language,
      _Financialinstrproducttype
}