I_ExchangeRateType
Exchange Rate Type
I_ExchangeRateType is a Basic CDS View (Dimension) that provides data about "Exchange Rate Type" in SAP S/4HANA. It reads from 1 data source (tcurv) and exposes 9 fields with key field ExchangeRateType. It has 1 association to related views. It is exposed through 1 OData service (FARR_SD_REV_CATCHUP). Part of development package SFIB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcurv | tcurv | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ExchangeRateTypeText | _Text | tcurv.kurst = _Text.ExchangeRateType |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Exchange Rate Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIEXCHRATETYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ExchangeRateType | view | |
| ObjectModel.sapObjectNodeType.name | ExchangeRateType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| Search.searchable | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| FARR_SD_REV_CATCHUP | FARR_SDB_REV_CATCHUP | V2 | C1 | NOT_RELEASED |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ExchangeRateType | tcurv | kurst | |
| ReferenceCurrency | ||||
| BuyingRateAvgExchangeRateType | ||||
| InvertedExchangeRateIsAllowed | ||||
| SellingRateAvgExchangeRateType | ||||
| FixedExchangeRateIsUsed | ||||
| SpecialConversionIsUsed | ||||
| SourceCurrencyIsBaseCurrency | xbwrl | |||
| _Text | _Text |
@EndUserText.label: 'Exchange Rate Type'
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIEXCHRATETYPE'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.buffering.numberOfKeyFields: 1
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {representativeKey: 'ExchangeRateType',
sapObjectNodeType.name: 'ExchangeRateType',
supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
modelingPattern: #ANALYTICAL_DIMENSION,
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M
}
}
@Search.searchable: true
define view I_ExchangeRateType as select from tcurv
association [0..*] to I_ExchangeRateTypeText as _Text
on tcurv.kurst = _Text.ExchangeRateType
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key tcurv.kurst as ExchangeRateType,
cast(tcurv.bwaer as fis_bwaer_curv preserving type ) as ReferenceCurrency,
cast(tcurv.gkuzu as fis_gkuzu_cur preserving type ) as BuyingRateAvgExchangeRateType,
cast(tcurv.xinvr as fis_xinvr_curv preserving type ) as InvertedExchangeRateIsAllowed,
//tcurv.xbwrl as
cast(bkuzu as fis_bkuzu_cur preserving type ) as SellingRateAvgExchangeRateType,
cast(xfixd as fis_xfixd_curv preserving type ) as FixedExchangeRateIsUsed,
cast(xeuro as fis_xeuro_curv preserving type ) as SpecialConversionIsUsed,
xbwrl as SourceCurrencyIsBaseCurrency,
_Text
};
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA