- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi all,
I have been tasked with seeing if ServiceNow can change the colour/notify in the incident list when an update has been added to an incident from the customer? below is an example of an incident:
Can the list view background change colour for this incident when there is an unread update from the customer? or can there be a notification icon added before the number field once an update is received?
Thanks in advance.
Steve
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday - last edited yesterday
why did you use “” here? Try below, it should work:
javascript:current.assigned_to.user_name!=current.sys_updated_by
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
I don't think it's possible, as there's no way to determine if the Activity Log has been read or not.
So it's not feasible to control visibility based on that.
You can apply conditions based on state or other fields, but not specifically on work notes being read.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday - last edited yesterday
You can highlight the list in someway, folow steps:
1. Go to "sys_ui_style" table and create new record. Slecet table as incident and field as number.
2. In value add the condition , javascript:current.caller_id.user_name==current.sys_updated_by ( remove &colon word and put the symbol ":")
3. In style field add , background-color:orange
Note : you can enhance the condition in value field as per your requirement. Also if you want to add any icon instead of coloured dot, refer the OOB record in "sys_ui_style" table on field caller (table = incident).
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi, This is great, thank you. How would i set this so that the notification would appear if the last comment/update was by anyone except the assigned_to analyst?
I have tried: javascript:current.assigned_to.user_name"!="current.sys_updated_by
but this is not working.
thanks for your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday - last edited yesterday
why did you use “” here? Try below, it should work:
javascript:current.assigned_to.user_name!=current.sys_updated_by
Raghav
MVP 2023