I_FinancialInstrTransType

DDL: I_FINANCIALINSTRTRANSTYPE SQL: IFININSTRTP Type: view BASIC

Transaction Type

I_FinancialInstrTransType is a Basic CDS View (Dimension) that provides data about "Transaction Type" in SAP S/4HANA. It reads from 1 data source (at10) and exposes 6 fields with key fields FinancialInstrTransactionType, FinancialInstrumentProductType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
at10 FinancialInstrTransType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrTransTypeText _Text $projection.FinancialInstrTransactionType = _Text.FinancialInstrTransactionType and $projection.FinancialInstrumentProductType = _Text.FinancialInstrumentProductType

Annotations (20)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFININSTRTP view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Transaction Type view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey FinancialInstrTransactionType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrTransactionType
KEY FinancialInstrumentProductType at10 sgsart
FinInstrTransactionCategory at10 sfgtyp
TreasuryContractType rantyp
_Text _Text
_FinancialInstrProductType _FinancialInstrProductType
// harmonized annotations 

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

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

@Analytics.dataCategory: #DIMENSION 
@Analytics.dataExtraction.enabled: true // use only if view is customizing or small master data 

@Analytics.internalName: #LOCAL 
@ClientHandling.algorithm: #SESSION_VARIABLE 
@EndUserText.label: 'Transaction Type'
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'FinancialInstrTransactionType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B 
@ObjectModel.usageType.sizeCategory: #M
@Metadata.allowExtensions:true   
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

@VDM.viewType: #BASIC
@Search.searchable: true
@Consumption.ranked: true
define view I_FinancialInstrTransType
  as select from at10 as FinancialInstrTransType

  association [0..*] to I_FinancialInstrTransTypeText as _Text                      on  $projection.FinancialInstrTransactionType  = _Text.FinancialInstrTransactionType
                                                                                    and $projection.FinancialInstrumentProductType = _Text.FinancialInstrumentProductType

  association        to I_FinancialinstrProductType   as _FinancialInstrProductType on  $projection.FinancialInstrumentProductType = _FinancialInstrProductType.FinancialInstrumentProductType
{
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @ObjectModel.text.association: '_Text'
  key cast(FinancialInstrTransType.sfhaart as ftr_gen_transaction_type preserving type) as FinancialInstrTransactionType,
      @Search.ranking: #LOW
      @Search.defaultSearchElement: true
      @ObjectModel.foreignKey.association: '_FinancialInstrProductType'
  key FinancialInstrTransType.sgsart                                    as FinancialInstrumentProductType,
      @Search.ranking: #LOW
      @Search.defaultSearchElement: true
      FinancialInstrTransType.sfgtyp                                    as FinInstrTransactionCategory,
      @Search.ranking: #LOW
      @Search.defaultSearchElement: true
      rantyp                                                            as TreasuryContractType,      
      _Text,
      @Consumption.filter.hidden: true
      _FinancialInstrProductType
}                               
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"AT10"
],
"ASSOCIATED":
[
"I_FINANCIALINSTRPRODUCTTYPE",
"I_FINANCIALINSTRTRANSTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/