I_FinInstrTransCatText

DDL: I_FININSTRTRANSCATTEXT SQL: IFININSTRANSCATT Type: view BASIC

Transaction Category - Text

I_FinInstrTransCatText is a Basic CDS View that provides data about "Transaction Category - Text" in SAP S/4HANA. It reads from 1 data source (at01t) and exposes 7 fields with key fields Language, FinancialInstrProductCategory, FinInstrTransactionCategory. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
at01t at01t from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_FinancialInstrProdCat _FinancialInstrProdCat $projection.FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory
[0..1] I_FinInstrTransCat _FinInstrTransCat $projection.FinancialInstrProductCategory = _FinInstrTransCat.FinancialInstrProductCategory and $projection.FinInstrTransactionCategory = _FinInstrTransCat.FinInstrTransactionCategory

Annotations (16)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IFININSTRANSCATT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Transaction Category - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinInstrTransactionCategory view
ObjectModel.usageType.dataClass #MASTER 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 spras
KEY FinancialInstrProductCategory sanlfor
KEY FinInstrTransactionCategory sfgtyp
FinInstrTransCategoryName xtext
_FinancialInstrProdCat _FinancialInstrProdCat
_FinInstrTransCat _FinInstrTransCat
_Language _Language
// harmonized annotations 

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

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

@ClientHandling.algorithm: #SESSION_VARIABLE 
@EndUserText.label: 'Transaction Category - 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: 'FinInstrTransactionCategory' 
@ObjectModel.usageType.dataClass: #MASTER
@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_FinInstrTransCatText as select from at01t 
  association [0..1] to I_Language                  as _Language                  on $projection.Language = _Language.Language
  association [0..1] to I_FinancialInstrProdCat     as _FinancialInstrProdCat     on $projection.FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory
  association [0..1] to I_FinInstrTransCat          as _FinInstrTransCat          on 
         $projection.FinancialInstrProductCategory = _FinInstrTransCat.FinancialInstrProductCategory and
         $projection.FinInstrTransactionCategory = _FinInstrTransCat.FinInstrTransactionCategory
{
  @Semantics.language: true
  @ObjectModel.foreignKey.association: '_Language'
  key spras as  Language, 
  @ObjectModel.foreignKey.association: '_FinancialInstrProdCat'
  key sanlfor as FinancialInstrProductCategory, 
  key sfgtyp as FinInstrTransactionCategory, 
  @Semantics.text:true  
  @Search.defaultSearchElement: true 
  @Search.ranking: #LOW
  xtext as FinInstrTransCategoryName,
  _FinancialInstrProdCat,
  _FinInstrTransCat,
  _Language 
}