I_FinancialInstrTransType

DDL: I_FINANCIALINSTRTRANSTYPE SQL: IFININSTRTP Type: view BASIC

Transaction Type

I_FinancialInstrTransType (Basic)

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

Financial Instrument Transaction Type · Financial Operations

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.

SAP Help Documentation

CategoryCDS Views for Configuration Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables)
Corresponding DataSourceIFININSTRTP
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which transaction types are available in the system for specific product types?

Structure
Measures and attributes Some important attributes are: Financial instrument transaction type Product type Transaction category Contract type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which transaction types are available in the system for specific product types?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
at10 FinancialInstrTransType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrTransTypeText _Text $projection.FinancialInstrTransactionType = _Text.FinancialInstrTransactionType and $projection.FinancialInstrumentProductType = _Text.FinancialInstrumentProductType

Annotations (20)

NameValueLevelField
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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrTransactionType Financial Instrument Transaction Type
KEY FinancialInstrumentProductType at10 sgsart Product Type
FinInstrTransactionCategory at10 sfgtyp Transaction Category
TreasuryContractType rantyp Contract Type
_Text _Text
_FinancialInstrProductType _FinancialInstrProductType

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_FinancialInstrTransType.
-- 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: IFININSTRTP

CREATE VIEW I_FinancialInstrTransType AS
SELECT
  cast(FinancialInstrTransType.sfhaart as ftr_gen_transaction_type preserving type) AS FinancialInstrTransactionType,
  FinancialInstrTransType.sgsart AS FinancialInstrumentProductType,
  FinancialInstrTransType.sfgtyp AS FinInstrTransactionCategory,
  rantyp AS TreasuryContractType
FROM at10 AS FinancialInstrTransType
LEFT OUTER JOIN I_FinancialInstrTransTypeText AS _Text ON FinancialInstrTransactionType = _Text.FinancialInstrTransactionType AND FinancialInstrumentProductType = _Text.FinancialInstrumentProductType  -- association [0..*]
;