C_CurrencyValueHelp

DDL: C_CURRENCYVALUEHELP SQL: CCURRENCY_VH Type: view CONSUMPTION

Currency Value help

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

Data Sources (1)

SourceAliasJoin Type
I_CurrencyText Currency from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCURRENCY_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Currency Value help view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.representativeKey Currency view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
OData.publish true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CurrencyText Language Report Text Language
KEY Currency I_CurrencyText Currency Valuation Crcy
CurrencyName I_CurrencyText CurrencyName
CurrencyShortName I_CurrencyText CurrencyShortName 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 C_CurrencyValueHelp.
-- 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: CCURRENCY_VH

CREATE VIEW C_CurrencyValueHelp AS
SELECT
  Currency.Language AS Language,
  Currency.Currency AS Currency,
  Currency.CurrencyName AS CurrencyName,
  Currency.CurrencyShortName AS CurrencyShortName
FROM I_CurrencyText AS Currency
;