- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023 10:37 AM
Hi guys!
I just want to ask if it's possible to display the actual time and date when an incident was transferred from one group to another in LIST VIEW?
For example, this incident was transferred from GROUP 1 to GROUP 2 last September 13, 2023 at 01:21. Can I put the time and date in LIST VIEW?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2023 04:54 AM - edited 09-19-2023 04:55 AM
Hi @Anastasia Ty-Ch,
Create a custom field on your table for this you can refer the product document https://docs.servicenow.com/en-US/bundle/vancouver-it-service-management/page/product/change-managem...
Once custom field is created then create on After business rule on Update operation and use below code to populate value in your custom field.
Please mark the appropriate response as correct answer and helpful, This may help other community users to follow correct solution.
Thanks
Vijay Balotia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023 11:17 AM
Hi @Anastasia Ty-Ch it is OOB as well. when personalize the list layout then there are two list layout columns available in the list. Additional comments and work notes as well, if the user updates work notes then time stamp with the user name will show in the worknotes column and if hover on that then it'll show the update as well, same as for additional comments.
Please mark the appropriate response as the correct answer and helpful, This may help other community users to follow the correct solution.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023 10:34 PM
Hi @Anastasia Ty-Ch ,
OOTB is it not possible as other have mentioned. Basic I would recommend you to create a metric for the change of assignment group. Based on this, you will be able to get a listview of assignment group changes.
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Best regards
Anders
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2023 12:40 AM
You can make use of OOTB Audit history table to view the changes on any field with their Old and New Value in the list view, by default audit is enabled for the incident table you can open the audit history through context menu of the incident record
You can filter the field you are looking for in the field label column and filter assignment group:
If you do not find the list in the history on the context menu, you need to enable the audit history, also apart from time stamp it provides audit of which user made the change on the field. To enable or disable the audit on the table or field level follow the document link below:
Revert if you need any clarification.
If my response helps to solve your issue, kindly mark it as helpful & correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2023 07:02 AM
Thank you so much @Vijay Balotia1 @Sachinspace1354 @AndersBGS @Prabu Velayutha for all your answers/suggestions. Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2023 11:03 AM - edited 09-24-2023 11:04 AM
Hello @Anastasia Ty-Ch ,
Current.update in not recommended in Business rule , it will cause performance issue in long run . you can see by putting log in your script , it gone run on every update resulting performance issue.
Create a Before BR with same conditions with below script