I_ExchangeRateTypeText

DDL: I_EXCHANGERATETYPETEXT SQL: IFIEXCHRATETYPET Type: view BASIC Package: SFIB

Exchange Rate Type Text

I_ExchangeRateTypeText (Basic)

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

Accounting and Financial Close

I_ExchangeRateTypeText is a Basic CDS View that provides data about "Exchange Rate Type Text" in SAP S/4HANA. It reads from 1 data source (tcurw) and exposes 4 fields with key fields ExchangeRateType, Language. It has 1 association to related views. It is exposed through 18 OData services (ASQL_F1737, ASQL_F2331, ASQL_F2332, ...). Part of development package SFIB.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentBC-SRV-BSF-CUR-2CL
CapabilitiesData Source for Data Extraction
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tcurw tcurw from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Exchange Rate Type Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIEXCHRATETYPET view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ExchangeRateType view
ObjectModel.dataCategory #TEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Search.searchable true view

OData Services (18)

ServiceBindingVersionContractRelease
ASQL_F1737 ASQL_F1737 C2 NOT_RELEASED
ASQL_F2331 ASQL_F2331 C2 NOT_RELEASED
ASQL_F2332 ASQL_F2332 C2 NOT_RELEASED
ASQL_F3001 ASQL_F3001 C2 NOT_RELEASED
ASQL_F3098 ASQL_F3098 C2 NOT_RELEASED
ASQL_F3130 ASQL_F3130 C2 NOT_RELEASED
ASQL_F3265 ASQL_F3265 C2 NOT_RELEASED
ASQL_F3418A ASQL_F3418A C2 NOT_RELEASED
ASQL_F3450 ASQL_F3450 C2 NOT_RELEASED
ASQL_F3567 ASQL_F3567 C2 NOT_RELEASED
ASQL_F3775 ASQL_F3775 C2 NOT_RELEASED
ASQL_F3941 ASQL_F3941 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED
ASQL_F4765 ASQL_F4765 C2 NOT_RELEASED
ASQL_F5445 ASQL_F5445 C2 NOT_RELEASED
ASQL_F7205A ASQL_F7205A C2 NOT_RELEASED
ASQL_F7264 ASQL_F7264 C2 NOT_RELEASED
ASQL_F7935 ASQL_F7935 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ExchangeRateType kurst Fix.rate type (EMU)
KEY Language spras Off. Language
ExchangeRateTypeName curvw Exchange rate type usage
_Language _Language

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_ExchangeRateTypeText.
-- 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: IFIEXCHRATETYPET

CREATE VIEW I_ExchangeRateTypeText AS
SELECT
  kurst AS ExchangeRateType,
  spras AS Language,
  curvw AS ExchangeRateTypeName
FROM tcurw
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;