C_OrderMasterVH

DDL: C_ORDERMASTERVH SQL: CORDERM_VH Type: view CONSUMPTION

Order Master Value Help

C_OrderMasterVH is a Consumption CDS View that provides data about "Order Master Value Help" in SAP S/4HANA. It reads from 1 data source (I_Order) and exposes 4 fields with key field OrderID. It is exposed through 1 OData service (UI_MANUALACCRS_MNG). It is used in 1 Fiori application: Manage Manual Accruals.

Data Sources (1)

SourceAliasJoin Type
I_Order I_Order from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CORDERM_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Order Master Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #NONE view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANUALACCRS_MNG UI_MANUALACCRS_MNG V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F5423 Manage Manual Accruals Transactional With this app, you can create, import, edit, and copy accrual objects as well as change their status. You can use this app to: - Display and edit accrual objects. - Create new accrual objects. - Copy accrual objects. - Import accrual objects from a spreadsheet file. - Change the status of an accrual object by pausing, suspending, or resuming its accrual subobjects. - Prematurely finish accrual subobjects by terminating them or undo premature termination. - View the parameters assigned to an accrual object. - View a detailed summary of changes made to the accrual object, comparing the old and new values of the accrual object fields.

Manage Manual Accruals

Business Role: General Ledger Accountant

With this app, you can create, import, edit, and copy accrual objects as well as change their status.

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OrderID OrderID
OrderDescription OrderDescription
OrderType OrderType
ControllingArea ControllingArea
@AbapCatalog.sqlViewName: 'CORDERM_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AbapCatalog.preserveKey: true

@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true

@ObjectModel.semanticKey:  [ 'OrderID']
@ObjectModel.representativeKey: [ 'OrderID' ]
@ObjectModel.usageType.dataClass: #MASTER

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@EndUserText.label: 'Order Master Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type:#NONE
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
define view C_OrderMasterVH 
  as select from I_Order
{
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key OrderID,
     
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      OrderDescription,
      
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      OrderType,
      
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      ControllingArea

}