I_FinancialTransactionStdVH

DDL: I_FINANCIALTRANSACTIONSTDVH SQL: IFTRFT__VH Type: view COMPOSITE Package: FTTR_CORE

FinancialTransaction

I_FinancialTransactionStdVH (Composite)

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

Financial Operations

I_FinancialTransactionStdVH is a Composite CDS View that provides data about "FinancialTransaction" in SAP S/4HANA. It reads from 1 data source (I_FinancialTransaction) and exposes 17 fields with key fields FinancialTransaction, CompanyCode. It has 2 associations to related views. It is exposed through 17 OData services (ASQL_F0735, ASQL_F1754, ASQL_F1755, ...). Part of development package FTTR_CORE.

SAP API Hub

CategoryComposite
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM-2CL
CapabilitiesData Source for Search,Data Provider for Value Help
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

Documentation

Data Sources (1)

SourceAliasJoin Type
I_FinancialTransaction I_FinancialTransaction from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _CreatedBy $projection.CreatedByUser = _CreatedBy.ContactCardID
[0..1] I_UserContactCard _LastChangedBy $projection.LastChangedByUser = _LastChangedBy.ContactCardID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IFTRFT__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey FinancialTransaction view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label FinancialTransaction view
Consumption.ranked true view
Search.searchable true view
AccessControl.personalData.blocking #NOT_REQUIRED view

OData Services (17)

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_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 (17)

KeyFieldSource TableSource FieldDescription
KEY FinancialTransaction FinancialTransaction Financial Transaction
KEY CompanyCode CompanyCode Receiver Company Code
FinancialInstrTransactionType FinancialInstrTransactionType Financial Instrument Transaction Type
FinancialInstrumentProductType FinancialInstrumentProductType Product Type
Counterparty Counterparty Counterparty Number
CreatedByUser CreatedByUser Entered By
CreatedByUserDescription _CreatedBy FullName Full Name of Person
FinTransCreationDate FinTransCreationDate Created On
LastChangedByUser LastChangedByUser Last Changed By User
LastChangedByUserDescription _LastChangedBy FullName Full Name of Person
LastChangeDate LastChangeDate Time Stamp
FinancialInstrumentStatus FinancialInstrumentStatus Active Status of Transaction or Activity
Portfolio Portfolio Portfolio
SecurityAccount SecurityAccount Security Account
_CreatedBy _CreatedBy
_LastChangedBy _LastChangedBy
_CompanyCode _CompanyCode

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_FinancialTransactionStdVH.
-- 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: IFTRFT__VH

CREATE VIEW I_FinancialTransactionStdVH AS
SELECT
  FinancialTransaction,
  CompanyCode,
  FinancialInstrTransactionType,
  FinancialInstrumentProductType,
  Counterparty,
  CreatedByUser,
  _CreatedBy.FullName AS CreatedByUserDescription,
  FinTransCreationDate,
  LastChangedByUser,
  _LastChangedBy.FullName AS LastChangedByUserDescription,
  LastChangeDate,
  FinancialInstrumentStatus,
  Portfolio,
  SecurityAccount
FROM I_FinancialTransaction
LEFT OUTER JOIN I_UserContactCard AS _CreatedBy ON CreatedByUser = _CreatedBy.ContactCardID  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _LastChangedBy ON LastChangedByUser = _LastChangedBy.ContactCardID  -- association [0..1]
;