I_CurrencyText

DDL: I_CURRENCYTEXT SQL: IFICURRENCYTEXT Type: view BASIC

Currency Text

I_CurrencyText (Basic)

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

Accounting and Financial Close

I_CurrencyText is a Basic CDS View that provides data about "Currency Text" in SAP S/4HANA. It reads from 1 data source (tcurt) and exposes 6 fields with key fields Language, Currency.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentBC-SRV-BSF-CUR
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tcurt tcurt from

Annotations (8)

NameValueLevelField
EndUserText.label Currency Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Currency view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICURRENCYTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
_Language _Language
KEY Currency waers Transaction Currency
_Currency _Currency
CurrencyName Text exists
CurrencyShortName ktext Short 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_CurrencyText.
-- 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: IFICURRENCYTEXT

CREATE VIEW I_CurrencyText AS
SELECT
  spras AS Language,
  waers AS Currency,
  cast(ltext as ltext_cds preserving type) AS CurrencyName,
  ktext AS CurrencyShortName
FROM tcurt
;