Add Flag on List View of Caller field on Incident
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi Everyone,
how to implement below requirement:
Enhance the Incident List View in ServiceNow by visually identifying callers who meet specific criteria. When the Caller on an Incident record is:
- user is not VIP, AND
- A member of the “VIP Assistant ” group,
then the Caller field in the List View must be automatically highlighted using:
- A blue text color, and
- A caller-specific image (user_delegate.gif) displayed next to the caller’s name similar like VIP flag Image.
This visual indicator must apply only on the Incident List View, and only when both conditions (caller is not VIP + VIP Assistant membership) are true. All other callers must remain displayed with the default styling.
- Labels:
-
Hi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
you can use field style for this, something like this. please enhance the existing caller_id field style on INC table
This will work in native. Just change and add your group name
javascript:current.caller_id.vip == false && gs.getUser().getUserByID(gs.getUserID(current.caller_id)).isMemberOf('CAB Approval')
Output: Abel Tuter is Not VIP but member of group -> so icon is shown
Christen Mitchell is VIP and member of group -> so icon is not shown
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @Ankur Bawiskar - Want to I want to change the font or text color to red on list view for the Caller field like below screenshot of caller coumn:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
then update as this at the end as additional style
color:#ff0000
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
since caller is reference field, it will always show in Blue color as it's a link to User Record
I don't think you can give text color as RED
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader

