C_ProcessRouteUserVH

DDL: C_PROCESSROUTEUSERVH SQL: CPRUSRVH Type: view CONSUMPTION

Value Help for User Agent of Process Route

C_ProcessRouteUserVH is a Consumption CDS View that provides data about "Value Help for User Agent of Process Route" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 3 fields with key field UserID. It is exposed through 1 OData service (PLMI_PROCESS_ROUTE). It is used in 1 Fiori application: Process Routes.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPRUSRVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.semanticKey UserId view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.preserveKey true view
EndUserText.label Value Help for User Agent of Process Route view

OData Services (1)

ServiceBindingVersionContractRelease
PLMI_PROCESS_ROUTE PLMI_PROCESS_ROUTE V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F5070 Process Routes Transactional, Reuse Component Process Routes is a reusable application component to provide workflow capabilities including parallel tasks, sequential tasks, ad-hoc tasks, and background tasks which can be loaded automatically into consumer apps based on business rule framework.

Process Routes

Business Role: Development Manager - Discrete Industries

Users can manage process route tasks of the change record; setting processing times or deadlines, priorities and the recipients (agents) to each. Tasks can be parallel or sequential and can be added ad-hoc or via a template, executed by the user or in the background. Users can configure the change record to use the new advanced process route (based on BRFplus) for a change record type by selecting the Proc.Route checkbox in Customizing activity Define Engineering Change Record Types. In this case, no SAP Business Workflow scenario is required, as that is related to the simple workflow. Process route based on BRFplus will use the workflow template defined via Global Process Route Templates Workbench application. Power users can create global templates which can be used across change record types and transported across the landscape. Templates can have parallel or sequential tasks, either executed in the background or by the user.

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID I_UserContactCard ContactCardID
FirstName I_UserContactCard FirstName
LastName I_UserContactCard LastName
@AbapCatalog.sqlViewName: 'CPRUSRVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@ObjectModel.semanticKey: 'UserId'
@ObjectModel.representativeKey:'UserID'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Value Help for User Agent of Process Route'
define view C_ProcessRouteUserVH as select from I_UserContactCard {
@Search: { defaultSearchElement: true, ranking: #HIGH }
key I_UserContactCard.ContactCardID as UserID, 
@Search: { defaultSearchElement: true, ranking: #MEDIUM }
I_UserContactCard.FirstName, 
@Search: { defaultSearchElement: true, ranking: #MEDIUM }
I_UserContactCard.LastName
}