C_CurrencyValueHelp
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 2 OData services (UI_OPERATINGGLACCOUNT, UI_PHRPRQITMMASSUPDT). It is used in 1 Fiori application: Mass Changes to Centrally Managed Purchase requisitions. Part of development package ODATA_MM_PUR_CTRITEM_MNTR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CurrencyText | Currency | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_OPERATINGGLACCOUNT | UI_OPERATINGGLACCOUNT | V4 | C1 | NOT_RELEASED |
| UI_PHRPRQITMMASSUPDT | UI_PHRPRQITMMASSUPDT | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | I_CurrencyText | Language | |
| KEY | Currency | I_CurrencyText | Currency | |
| CurrencyName | I_CurrencyText | CurrencyName | ||
| CurrencyShortName | I_CurrencyText | CurrencyShortName |
@AbapCatalog.sqlViewName: 'CCURRENCY_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Currency Value help'
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.representativeKey: 'Currency'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@OData.publish: true
define view C_CurrencyValueHelp
as select from I_CurrencyText as Currency
{
// @Semantics.language: true
// @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@UI.hidden: true
key Currency.Language,
@UI.lineItem: [ { position: 10, importance: #HIGH}]
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@ObjectModel.text.element: [ 'CurrencyName' ]
key Currency.Currency,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@UI.lineItem: [ { position: 20, importance: #HIGH}]
Currency.CurrencyName,
@UI.lineItem: [ { position: 30, importance: #HIGH}]
Currency.CurrencyShortName
}
where
Currency.Language = $session.system_language
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA