C_ConditionRateValueUnit_VH

DDL: C_CONDITIONRATEVALUEUNIT_VH SQL: CCNDRATEVALUNTVH Type: view CONSUMPTION

Condition Rate Value Unit Value Help

C_ConditionRateValueUnit_VH is a Consumption CDS View that provides data about "Condition Rate Value Unit Value Help" in SAP S/4HANA. It reads from 1 data source (I_Currency) and exposes 3 fields with key field ConditionRateValueUnit. It is exposed through 1 OData service (UI_MANAGE_WARRANTYCLAIM).

Data Sources (1)

SourceAliasJoin Type
I_Currency Currency from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CCNDRATEVALUNTVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ConditionRateValueUnit view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Condition Rate Value Unit Value Help view

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANAGE_WARRANTYCLAIM UI_MANAGE_WARRANTYCLAIM V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConditionRateValueUnit I_Currency Currency
ConditionRateValueUnitName
ConditionCalculationType
@AbapCatalog.sqlViewName: 'CCNDRATEVALUNTVH'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'ConditionRateValueUnit'
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable:true
@Consumption.ranked:true
@EndUserText.label: 'Condition Rate Value Unit Value Help'
define view C_ConditionRateValueUnit_VH
  as select from I_Currency as Currency

{

      @ObjectModel.text.element:  [ 'ConditionRateValueUnitName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
      @UI.lineItem.position: 10
      @UI.selectionField.position: 10
  key Currency.Currency                                                                as ConditionRateValueUnit,
      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      @UI.lineItem.position: 20
      @UI.selectionField.position: 20
      Currency._Text[ 1: Language = $session.system_language ].CurrencyName            as ConditionRateValueUnitName,
      cast('   ' as abap.char ( 3 ))                                                   as ConditionCalculationType

      //if CDS view is not only used for modelling purposes but also for data retrieval: add % and per mille to the value list

}