Reference

The following expressions are available:

 
General expressionsKnowledge Base
Master dataMessages
Users, groups and process rolesTasks
Static expressionsTask life cycles
Configuration items (CIs)Task schemas
Dynamic placeholdersTask statuses
Early warning systemTickets
ExpensesWorkflow items
Dispatching rule 
 
 

 


 

Example:: Delimitation of Date/Time

In order to query whether a ticket has been created between 07:00 and 18:00 the following expression can be used:

Ticket.CreatedDateTime[‚HH.MM‘] > "07.00" &&

Ticket.CreatedDateTime[‚HH.MM‘] < "18.00"

This expression queries, whether the ticket has been created *after* 07:00 and *before* 18:00. Thus a switch in the workflow can be controlled.

Example:: Solve Ticket Directly

The workflow provides an option to query whether the Ticket Wizard has been completed via the button Solve directly:

Ticket.CustomAttributes!IsDirectSolve.Value = "True"

The expression above checks whether the Ticket Wizard has been completed with the button Solve directly. In this case, the whole expression returns True.