I_FinInstrTransCatText
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)
| Source | Alias | Join Type |
|---|---|---|
| at01t | at01t | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA