Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Transitioning of requests

Fariz Aliverdiyev
Contributor
October 11, 2021

Hello, everyone. 

How to make transitioning of requests from one status to another for all users except for 10 users, for example. Is there any automation rule for this? 

Thank you in advance. 

1 answer

0 votes
Avinash Bhagawati _Appfire_
Community Champion
October 12, 2021

Hi @Fariz Aliverdiyev ,

Please note that using 'Scripted (Groovy) Condition' ( From JMWE app)  in transition with below simple code you will be able to meet you requirement.

In first line, you can define the list of users that you want to exclude.

def excludeUsers = ["abc","lmn"]
return !(excludeUsers.contains(currentUser.name))

Thanks,
Avinash

Suggest an answer

Log in or Sign up to answer