I_CurrencyRole

DDL: I_CURRENCYROLE SQL: IFICURRENCYROLE Type: view BASIC Package: FINS_CURRENCY_TYPE_VDM

Currency Role

I_CurrencyRole (Basic)

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

Currency Role · Accounting and Financial Close

I_CurrencyRole is a Basic CDS View (Dimension) that provides data about "Currency Role" in SAP S/4HANA. It reads from 1 data source (finsc_curtype) and exposes 5 fields with key field CurrencyRole. It has 1 association to related views. Part of development package FINS_CURRENCY_TYPE_VDM.

SAP Help Documentation

CategoryCDS Views for Master Data
Purpose
This CDS view provides the prerequisites for answering the following business questions: How many currency roles are defined? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Further important fields Important fields in this view include the following: CurrencyRole

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-A-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
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
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>How many currency roles are defined?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
finsc_curtype finsc_curtype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CurrencyRoleText _Text $projection.CurrencyRole = _Text.CurrencyRole

Annotations (14)

NameValueLevelField
EndUserText.label Currency Role view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICURRENCYROLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CurrencyRole view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CurrencyRole view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CurrencyRole finsc_curtype curtype Currency Type
LegalCurrencyRole finsc_curtype legal_curtype Plain Currency Type (Without Valuation Aspects)
AccountingValuationView finsc_curtype valutyp Valuation View (for Transfer Prices)
AccountingValuationSubview finsc_curtype valusubtyp Subtype of Valuation View (for Transfer Prices)
_Text _Text

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_CurrencyRole.
-- 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: IFICURRENCYROLE

CREATE VIEW I_CurrencyRole AS
SELECT
  finsc_curtype.curtype AS CurrencyRole,
  finsc_curtype.legal_curtype AS LegalCurrencyRole,
  finsc_curtype.valutyp AS AccountingValuationView,
  finsc_curtype.valusubtyp AS AccountingValuationSubview
FROM finsc_curtype
LEFT OUTER JOIN I_CurrencyRoleText AS _Text ON CurrencyRole = _Text.CurrencyRole  -- association [0..*]
;