I_FinancialInstrTransType
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. Part of development package FTTR_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| at10 | FinancialInstrTransType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FinancialInstrTransTypeText | _Text | $projection.FinancialInstrTransactionType = _Text.FinancialInstrTransactionType and $projection.FinancialInstrumentProductType = _Text.FinancialInstrumentProductType |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 | |
| ObjectModel.sapObjectNodeType.name | FinancialInstrTransactionType | view |
// 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
@ObjectModel.sapObjectNodeType.name: 'FinancialInstrTransactionType'
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
}
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