Modify the Rules for Job Types

This scenario is easily modified to allow for job types. In other words, you can customize this role to allow individuals to approve selected job types. You accomplish this by modifying the Record Rights SQL clause.

For example, you want the user to be able to approve DeleteProcess jobs. For the first and second example rules, you would change the SQL in the text field to this:

state = ‘Request’ AND jobclass = ‘DeleteProcess’

For the third rule, you would modify the SQL to this:

state <> ‘Request’ AND jobclass <> ‘DeleteProcess’

Now the same user can approve DeleteProcess job requests, but not the payroll. The more types of jobs that you want to allow or deny, the more rules you may need.