I_UnitOfMeasureStdVH

DDL: I_UNITOFMEASURESTDVH SQL: IUNITOFMEASUREVH Type: view COMPOSITE Package: SZME

Unit of Measure

I_UnitOfMeasureStdVH is a Composite CDS View that provides data about "Unit of Measure" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 5 fields with key field UnitOfMeasure. It is exposed through 3 OData services (BOMMASSMAINT, UI_CUSTOMER_WARRANTYCLAIM, UI_MANAGE_WARRANTYCLAIM). It is used in 2 Fiori applications: Manage Claims, Manage Claims-Customer facing process. Part of development package SZME.

Data Sources (1)

SourceAliasJoin Type
I_UnitOfMeasure I_UnitOfMeasure from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IUNITOFMEASUREVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Unit of Measure view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UnitOfMeasure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view

OData Services (3)

ServiceBindingVersionContractRelease
BOMMASSMAINT BOM_MASS_MAINT V4 C1 NOT_RELEASED
UI_CUSTOMER_WARRANTYCLAIM UI_CUSTOMER_WARRANTYCLAIM V2 C1 NOT_RELEASED
UI_MANAGE_WARRANTYCLAIM UI_MANAGE_WARRANTYCLAIM V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F5227 Manage Claims Transactional An application to manage warranty claims for supplier recovery processes
F6204 Manage Claims-Customer facing process Transactional An application to manage Warranty Claims for customer facing 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

Manage Claims-Customer facing process

Business Role: Claims Analyst

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UnitOfMeasure UnitOfMeasure
UnitOfMeasure_E
UnitOfMeasureLongName
UnitOfMeasureDimension UnitOfMeasureDimension
UnitOfMeasureDimensionName
@AbapCatalog.sqlViewName: 'IUNITOFMEASUREVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Unit of Measure'
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'UnitOfMeasure'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Search.searchable: true

define view I_UnitOfMeasureStdVH as select from I_UnitOfMeasure 
{

   @Semantics.unitOfMeasure: true
   @ObjectModel.text.element:['UnitOfMeasureLongName']   
   key UnitOfMeasure,  

   @Search.defaultSearchElement: true
   @Search.ranking: #HIGH
   @Consumption.hidden: true
   _Text[ 1: Language = $session.system_language ].UnitOfMeasure_E,        
    
   @Search.defaultSearchElement: true 
   @Search.fuzzinessThreshold: 0.8    
   @Semantics.text:true 
   _Text[ 1: Language = $session.system_language ].UnitOfMeasureLongName,   

   @ObjectModel.text.element:['UnitOfMeasureDimensionName']   
   UnitOfMeasureDimension, 
 
   @Search.defaultSearchElement: true 
   @Search.fuzzinessThreshold: 0.8      
   @Semantics.text:true    
   _DimensionText[ 1: Language = $session.system_language ].UnitOfMeasureDimensionName
   
}