C_CurrencyValueHelp

DDL: C_CURRENCYVALUEHELP SQL: CCURRENCY_VH Type: view CONSUMPTION Package: ODATA_MM_PUR_CTRITEM_MNTR

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)

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 (2)

ServiceBindingVersionContractRelease
UI_OPERATINGGLACCOUNT UI_OPERATINGGLACCOUNT V4 C1 NOT_RELEASED
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
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