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. It is exposed through 1 OData service (UI_PHRPRQITMMASSUPDT). It is used in 1 Fiori application: Mass Changes to Centrally Managed Purchase requisitions.

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

OData Services (1)

ServiceBindingVersionContractRelease
UI_PHRPRQITMMASSUPDT UI_PHRPRQITMMASSUPDT V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F7377 Mass Changes to Centrally Managed Purchase requisitions Transactional With this app, you can apply mass changes to fields in your centrally managed Purchase Requisitions. This allows you to implement changes that affect a large number of centrally managed purchase requisitions with just a few clicks.

Mass Changes to Centrally Managed Purchase requisitions

Business Role: Purchaser - Central Procurement

With this new app, you can update multiple centrally managed purchase requisition items simultaneously.

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
;