I_ExchangeRateType

DDL: I_EXCHANGERATETYPE SQL: IFIEXCHRATETYPE Type: view BASIC Package: SFIB

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)

SourceAliasJoin Type
tcurv tcurv from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ExchangeRateTypeText _Text tcurv.kurst = _Text.ExchangeRateType

Annotations (19)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
FARR_SD_REV_CATCHUP FARR_SDB_REV_CATCHUP V2 C1 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
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

};