- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2022 02:36 AM
My organisation want to set priorities for users logging incidents based on VIP flags all from the service portal.
This is our current form for creating incidents:
Now is it possible in the back end to say set a default priority to 2 for VIP users and have non VIP's as 3?
Any help for guidance on this would be appriciated.
Alex
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2022 03:46 AM
Hi,
do you want to check the user selected in Open on behalf of this user is VIP or not?
if yes then you can do this
if(producer.variableName.vip == true){
current.priority = 2;
}
else{
current.priority = 3;
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2022 03:46 AM
Hi,
do you want to check the user selected in Open on behalf of this user is VIP or not?
if yes then you can do this
if(producer.variableName.vip == true){
current.priority = 2;
}
else{
current.priority = 3;
}
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2022 07:58 PM
Thank you for marking my response as helpful.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader