I_FXFixingReference

DDL: I_FXFIXINGREFERENCE SQL: IFXFIXINGREF Type: view BASIC Package: FTTR_CORE

Foreign Exchange Fixing Reference

I_FXFixingReference (Basic)

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

Foreign Exchange Fixing Reference · Financial Operations

I_FXFixingReference is a Basic CDS View (Dimension) that provides data about "Foreign Exchange Fixing Reference" in SAP S/4HANA. It reads from 1 data source (ftrt_fix_def) and exposes 2 fields with key field ForeignExchangeFixingReference. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F6157). Part of development package FTTR_CORE.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view shows the available fixing reference IDs defined in master data. Fixing references specify how FX rate fixing takes place. In the fixing reference for a specific currency pair, the fixing reference source (such as a data provider), the location (for example, London), and the fixing time (for example, 16:00) are defined. This CDS view provides the prerequisites for answering the following business questions: Which fixing references are defined in system?

Structure
Measures and attributes Some important measures and attributes are: Fixing Reference ID

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Analytical Dimension,Data Source in SQL Select
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 shows the available fixing reference IDs defined in master data.</p> <p>Fixing references specify how FX rate fixing takes place. In the fixing reference for a specific currency pair, the fixing reference source (such as a data provider), the location (for example, London), and the fixing time (for example, 16:00) are defined.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>Which fixing references are defined in system?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
ftrt_fix_def ftrt_fix_def from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FXFixingReferenceText _FixingReferenceText $projection.ForeignExchangeFixingReference = _FixingReferenceText.ForeignExchangeFixingReference

Annotations (20)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IFXFIXINGREF 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 Foreign Exchange Fixing Reference view
ObjectModel.representativeKey ForeignExchangeFixingReference 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
ObjectModel.sapObjectNodeType.name ForeignExchangeFixingReference view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F6157 ASQL_F6157 C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ForeignExchangeFixingReference fix_id Fixing Reference ID
_FixingReferenceText _FixingReferenceText

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_FXFixingReference.
-- 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: IFXFIXINGREF

CREATE VIEW I_FXFixingReference AS
SELECT
  fix_id AS ForeignExchangeFixingReference
FROM ftrt_fix_def
LEFT OUTER JOIN I_FXFixingReferenceText AS _FixingReferenceText ON ForeignExchangeFixingReference = _FixingReferenceText.ForeignExchangeFixingReference  -- association [0..*]
;