I_FINANCIALTRANSACTIONTYPET

CDS View

Financial Transaction Type - Text

I_FINANCIALTRANSACTIONTYPET is a CDS View in S/4HANA. Financial Transaction Type - Text. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_CnsldtnFinTransTypeT view from COMPOSITE Consolidation Combined FinTransType Text
@EndUserText.label: 'Financial Transaction Type - Text'
@AbapCatalog.sqlViewName: 'IFITRANSTYPET'
@VDM.viewType: #BASIC
@Analytics: { dataExtraction.enabled: true  }
@ObjectModel.representativeKey: 'FinancialTransactionType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.numberOfKeyFields: 1
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
@Search.searchable: true
define view I_FinancialTransactionTypeT
  as select from t856t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu as Language,
      @ObjectModel.text.element: ['FinancialTransactionTypeName']
  key cast( trtyp as fis_rmvct preserving type ) as FinancialTransactionType,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      txt   as FinancialTransactionTypeName,
      _Language
};