I_FinInstrActivityCategory

DDL: I_FININSTRACTIVITYCATEGORY SQL: IFININSTRACTCAT Type: view BASIC

Financial Instrument Activity Category

I_FinInstrActivityCategory (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Financial Instrument Activity Category · Financial Operations

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.

SAP Help Documentation

CategoryCDS Views for System Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Corresponding DataSourceIFININSTRACTCAT
Purpose
This CDS view shows the transaction activity categories available in system tables for product categories and transaction categories. This CDS view provides the prerequisites for answering the following business question: Which activity categories are available for product categories and transaction categories?

Structure
Measures and attributes Some important measures and attributes are: Financial Product Category Transaction Category Transaction Activity Category

SAP Business Warehouse (SAP BW) Extraction
Note The corresponding DataSource (Extractor) and this CDS view may offer different functions. If you are interested in the details of the DataSource, see the related documentation on SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Use SAP Library BI Content . For more information about data extraction, see Extracting Data Through CDS Views to SAP BW/4HANA .

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesAssociation Target for Defining CDS Entities, Analytical Dimension, Data Source for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view shows the transaction activity categories available in system tables for product categories and transaction categories.</p> <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>Which activity categories are available for product categories and transaction categories?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
at02 at02 from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrProductCategory sanlfor Financial Product Category
KEY FinInstrTransactionCategory sfgtyp Transaction Category
KEY FinancialInstrActivityCategory sfgzustt Transaction Activity Category
FinTransGenActivityCategory General Activity Category
_ProductCategory _ProductCategory
_TransactionCategory _TransactionCategory
_ActivityCategoryText _ActivityCategoryText

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_FinInstrActivityCategory.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IFININSTRACTCAT

CREATE VIEW I_FinInstrActivityCategory AS
SELECT
  sanlfor AS FinancialInstrProductCategory,
  sfgtyp AS FinInstrTransactionCategory,
  sfgzustt AS FinancialInstrActivityCategory,
  cast(svgtyp as ftr_gen_activity_category) AS FinTransGenActivityCategory
FROM at02
LEFT OUTER JOIN I_FinancialInstrProdCat AS _ProductCategory ON FinancialInstrProductCategory = _ProductCategory.FinancialInstrProductCategory  -- association [0..1]
LEFT OUTER JOIN I_FinInstrTransCat AS _TransactionCategory ON FinancialInstrProductCategory = _TransactionCategory.FinancialInstrProductCategory AND FinInstrTransactionCategory = _TransactionCategory.FinInstrTransactionCategory  -- association [0..1]
LEFT OUTER JOIN I_FinInstrActivityCategoryText AS _ActivityCategoryText ON FinancialInstrProductCategory = _ActivityCategoryText.FinancialInstrProductCategory AND FinInstrTransactionCategory = _ActivityCategoryText.FinInstrTransactionCategory AND FinancialInstrActivityCategory = _ActivityCategoryText.FinancialInstrActivityCategory  -- association [0..*]
;