- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2025 12:26 PM
We currently allow users to open incidents by emailing our instance. These incidents are low impact/urgency/priority by default.
We're looking to automatically set the Urgency to High in the event one of our VIP users sends this email. These VIP users exist in an AD security group that syncs with ServiceNow.
We're running Yokohama. Hoping there is something OOB we can rely on. Thanks in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 03:54 AM
you can check if the user who is responding is member of that group
something like this but please enhance
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2025 07:29 PM - edited 05-21-2025 07:30 PM
Hi @nickm5816667392,
I am not sure if there is an OOB functionality, but here are some options:
- Set the VIP field of the User records to True for those in the VIP group.
- Either create some flow/business rule/scheduled job or check with your AD admin if they have a property that can be synced back to ServiceNow.
- Do you want to escalate the impact/urgency only when it's created through an email?
- If yes (although it doesn't make much sense), you can modify the current Inbound Action (or Flow if you are using one).
- If not, you can write a Business Rule (found an example you can use - https://www.servicenow.com/community/training-and-certifications/create-a-business-rule-on-issues-su...)
- Use the VIP field of the user record to escalate the Incident or not. (Or you can simply check if the user is in the VIP group if you don't want to use the VIP field)
Hope that helps, cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2025 10:45 PM
approach
1) you can use the inbound email action script to see which user replied and check in sys_user if that's VIP user (either VIP flag is true or that user is member of particular group) and then se the Impact, Urgency and Priority
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 03:49 AM
Hi @Ankur Bawiskar , I don't have a ton of experience with inbound email action scripts yet, however, I think I found a spot where this could be done.
I've located under Inbound Email Actions, a rule called Create Incident. Below is what this rule does. I'm thinking this is a good spot to add some code to check the group and set the priority? I'll also include a screenshot.
Any changes I make, I'll obviously test in Dev first.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2025 03:54 AM
you can check if the user who is responding is member of that group
something like this but please enhance
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader