I_FinInstrActivityCategory
Financial Instrument Activity Category
I_FinInstrActivityCategory is a Basic CDS View (Dimension) that provides data about "Financial Instrument Activity Category" in SAP S/4HANA. It reads from 1 data source (at02) and exposes 7 fields with key fields FinancialInstrProductCategory, FinInstrTransactionCategory, FinancialInstrActivityCategory. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| at02 | at02 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FinancialInstrProdCat | _ProductCategory | $projection.FinancialInstrProductCategory = _ProductCategory.FinancialInstrProductCategory |
| [0..1] | I_FinInstrTransCat | _TransactionCategory | $projection.FinancialInstrProductCategory = _TransactionCategory.FinancialInstrProductCategory and $projection.FinInstrTransactionCategory = _TransactionCategory.FinInstrTransactionCategory |
| [0..*] | I_FinInstrActivityCategoryText | _ActivityCategoryText | $projection.FinancialInstrProductCategory = _ActivityCategoryText.FinancialInstrProductCategory and $projection.FinInstrTransactionCategory = _ActivityCategoryText.FinInstrTransactionCategory and $projection.FinancialInstrActivityCategory = _ActivityCategoryText.FinancialInstrActivityCategory |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IFININSTRACTCAT | 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 | Financial Instrument Activity Category | view | |
| ObjectModel.representativeKey | FinancialInstrActivityCategory | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.allowExtensions | true | 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 | FinancialInstrProductCategory | sanlfor | ||
| KEY | FinInstrTransactionCategory | sfgtyp | ||
| KEY | FinancialInstrActivityCategory | sfgzustt | ||
| FinTransGenActivityCategory | ||||
| _ProductCategory | _ProductCategory | |||
| _TransactionCategory | _TransactionCategory | |||
| _ActivityCategoryText | _ActivityCategoryText |
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IFININSTRACTCAT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Financial Instrument Activity Category'
@ObjectModel.representativeKey: 'FinancialInstrActivityCategory'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@Metadata.allowExtensions:true
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@Search.searchable: true
@Consumption.ranked: true
define view I_FinInstrActivityCategory
as select from at02
association [0..1] to I_FinancialInstrProdCat as _ProductCategory on $projection.FinancialInstrProductCategory = _ProductCategory.FinancialInstrProductCategory
association [0..1] to I_FinInstrTransCat as _TransactionCategory on $projection.FinancialInstrProductCategory = _TransactionCategory.FinancialInstrProductCategory
and $projection.FinInstrTransactionCategory = _TransactionCategory.FinInstrTransactionCategory
association [0..*] to I_FinInstrActivityCategoryText as _ActivityCategoryText on $projection.FinancialInstrProductCategory = _ActivityCategoryText.FinancialInstrProductCategory
and $projection.FinInstrTransactionCategory = _ActivityCategoryText.FinInstrTransactionCategory
and $projection.FinancialInstrActivityCategory = _ActivityCategoryText.FinancialInstrActivityCategory
{
@ObjectModel.foreignKey.association: '_ProductCategory'
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@UI.lineItem:[{ position : 2 }]
key sanlfor as FinancialInstrProductCategory,
@ObjectModel.foreignKey.association: '_TransactionCategory'
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@UI.lineItem:[{ position : 3 }]
key sfgtyp as FinInstrTransactionCategory,
@ObjectModel.text.association: '_ActivityCategoryText'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@UI.lineItem:[{ position : 1 }]
key sfgzustt as FinancialInstrActivityCategory,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@UI.lineItem:[{ position : 4 }]
cast(svgtyp as ftr_gen_activity_category) as FinTransGenActivityCategory,
@Consumption.filter.hidden: true
_ProductCategory,
@Consumption.filter.hidden: true
_TransactionCategory,
@Consumption.filter.hidden: true
_ActivityCategoryText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"AT02"
],
"ASSOCIATED":
[
"I_FINANCIALINSTRPRODCAT",
"I_FININSTRACTIVITYCATEGORYTEXT",
"I_FININSTRTRANSCAT"
],
"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