How to remove an entry from Activity log?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2012 03:59 AM
How to remove an entry from Activity log?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2012 05:39 AM
In your screenshot, there are four updates, some of which concern more than one field (you can click on [+] icon to see the details) and not all of them are related to Work Notes. Are you only interested in deleting a Work Notes entry or are you trying to delete evidence of an update to some other field like Incident state or Assigned to?
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2012 02:55 PM
In screenshot, except the bottom entry (David Loo), all other were made by me, entering some rough input through work notes. I am interested in deleting any entry whether it is of Work Notes or any other evidence.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-27-2012 11:19 PM
You would need to delete the corresponding records from sys_audit table as follows:
1. Copy the sys_id of your incident
2. Navigate to sys_audit_list.do?sysparm_query=documentkey=YOUR-INC-SYS-ID
3. Locate the relevant record and delete it
But before you do that, you should make another update to your incident record so as to revert field values to their state before the update that you are trying to remove from the record history. Otherwise, record history will not reflect the real state of affairs.
As you cannot "revert" Work Notes to their previous state, you would need to delete the corresponding journal entry from sys_journal_field table:
1. Copy the sys_id of your incident
2. Navigate to sys_journal_field_list.do?sysparm_query=element_id=YOUR-INC-SYS-ID
3. Locate the relevant journal entry and delete it
NB: sys_audit and sys_journal_field tables are huge, so you'd better not try to open the whole table as a list.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-28-2012 05:12 AM
Thank you Slava, for sharing such a wonderful knowledge, I'll try and share my feedback!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2012 06:31 AM
I went through the steps you suggested but, it's not removing the comments/entries from Activity field. I have tried both the options as listed below:
1. Deleting the respective records from sys_journal_field and sys_audit tables.
2. Removing existing values from respective records in afore mentioned tables and save.
I am quite agree with the your instructions and ideally it should work as well but, don't know why it's not removing the correspondent entries from Activity field.