C_ConditionRateValueUnit_VH

DDL: C_CONDITIONRATEVALUEUNIT_VH SQL: CCNDRATEVALUNTVH Type: view CONSUMPTION Package: VKON

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). It is used in 1 Fiori application: Manage Claims. Part of development package VKON.

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

Fiori Apps (1)

App IDApp NameTypeDescription
F5227 Manage Claims Transactional An application to manage warranty claims for supplier recovery processes

Manage Claims

Business Role: Claims Analyst

With the Manage Supplier Claims application, you can create warranty claims that are forwarded to the suppliers for reimbursement. This includes creating supplier claims (based on repairs), validating claims for completeness and eligibility for reimbursement, and determining correct prices (for example materials, labor tasks) to claim the appropriate amount. Once the supplier responds, the application supports the transperant maintenance of values and posting of the negotiated A warranty claim is a claim for reimbursement of material and labor costs that are incurred for the purpose of rectifying faults in an object with a valid warranty.

Key Features: A claim analyst can use this application to do the following: Create a Supplier Claim Edit a Supplier Claim Validate a Supplier Claim Send a Claim to Supplier Adjust a Supplier Claim Record Supplier Response Post Supplier Claim to Finance Reverse Posted Supplier Claim Cancel a Supplier Claim Reject a Supplier Claim Reprocess a Supplier Claim Close a Supplier Claim Reopen a Supplier Claim

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

}