I_FinancialInstrTransType

DDL: I_FINANCIALINSTRTRANSTYPE SQL: IFININSTRTP Type: view BASIC Package: FTTR_CORE

Transaction Type

I_FinancialInstrTransType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. It is exposed through 18 OData services (ASQL_F0735, ASQL_F1754, ASQL_F1755, ...). Part of development package FTTR_CORE.

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

CategoryBasic
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Data Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Operations for SAP S/4HANA Cloud Public 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 (21)

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
ObjectModel.sapObjectNodeType.name FinancialInstrTransactionType view

OData Services (18)

ServiceBindingVersionContractRelease
ASQL_F0735 ASQL_F0735 C2 NOT_RELEASED
ASQL_F1754 ASQL_F1754 C2 NOT_RELEASED
ASQL_F1755 ASQL_F1755 C2 NOT_RELEASED
ASQL_F1867 ASQL_F1867 C2 NOT_RELEASED
ASQL_F2331 ASQL_F2331 C2 NOT_RELEASED
ASQL_F3098 ASQL_F3098 C2 NOT_RELEASED
ASQL_F3130 ASQL_F3130 C2 NOT_RELEASED
ASQL_F3450 ASQL_F3450 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED
ASQL_F4763 ASQL_F4763 C2 NOT_RELEASED
ASQL_F4979 ASQL_F4979 C2 NOT_RELEASED
ASQL_F4980 ASQL_F4980 C2 NOT_RELEASED
ASQL_F4981 ASQL_F4981 C2 NOT_RELEASED
ASQL_F4982 ASQL_F4982 C2 NOT_RELEASED
ASQL_F4983 ASQL_F4983 C2 NOT_RELEASED
ASQL_F4984 ASQL_F4984 C2 NOT_RELEASED
ASQL_F6157 ASQL_F6157 C2 NOT_RELEASED
ASQL_F7601 ASQL_F7601 C2 NOT_RELEASED

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..*]
;