I_FinInstrTransCat
Transaction Category
I_FinInstrTransCat is a Basic CDS View (Dimension) that provides data about "Transaction Category" in SAP S/4HANA. It reads from 1 data source (at01) and exposes 4 fields with key fields FinancialInstrProductCategory, FinInstrTransactionCategory. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| at01 | at01 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FinInstrTransCatText | _Text | $projection.FinancialInstrProductCategory = _Text.FinancialInstrProductCategory and $projection.FinInstrTransactionCategory = _Text.FinInstrTransactionCategory |
| [0..1] | I_FinancialInstrProdCat | _FinancialInstrProdCat | $projection.FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory |
Annotations (20)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IFINSTTC | 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 Category | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | FinInstrTransactionCategory | view | |
| ObjectModel.usageType.dataClass | #MASTER | 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 (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialInstrProductCategory | sanlfor | ||
| KEY | FinInstrTransactionCategory | sfgtyp | ||
| _FinancialInstrProdCat | _FinancialInstrProdCat | |||
| _Text | _Text |
// harmonized annotations
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true // only if required by ATC check
@AbapCatalog.sqlViewName: 'IFINSTTC'
@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 Category'
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'FinInstrTransactionCategory'
@ObjectModel.usageType.dataClass: #MASTER
@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_FinInstrTransCat as select from at01
association [0..*] to I_FinInstrTransCatText as _Text on
$projection.FinancialInstrProductCategory = _Text.FinancialInstrProductCategory and
$projection.FinInstrTransactionCategory = _Text.FinInstrTransactionCategory
association [0..1] to I_FinancialInstrProdCat as _FinancialInstrProdCat on
$projection.FinancialInstrProductCategory = _FinancialInstrProdCat.FinancialInstrProductCategory
{
//AT01
@ObjectModel.foreignKey.association: '_FinancialInstrProdCat'
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
key sanlfor as FinancialInstrProductCategory,
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key sfgtyp as FinInstrTransactionCategory,
@Consumption.filter.hidden: true
_FinancialInstrProdCat,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"AT01"
],
"ASSOCIATED":
[
"I_FINANCIALINSTRPRODCAT",
"I_FININSTRTRANSCATTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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