- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:07 AM
Hi,
Is it possible to setup a filter search to retrieve Work Notes that have been entered by a specific person?
Many thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:21 AM
You can do that on the Journal Entry table [sys_journal_field], filter for Element 'work_notes' and you can see the User ID of the User who added the work note.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 10:10 AM
Hello,
OOB there is no way to go to the incident from the element.
You can create a custom solution where you create a reference field on the sys_journal_field table and every time record is created we can update the reference field with that particular incident.
However the above is not a good solution and we should avoid it is because there are 100s of comments posted every minute so the BR will run non stop which can cause transaction issues and can delay all other scripts.
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 11:26 AM
You can see the table name in the 'Name' field when looking at the journal entries (for example, Name = 'incident', and you can see an Element ID in a different column (e.g. Element ID = '1c741bd70b2322007518478d83673af3'). You can use this information to navigate to the ticket in 2 steps, following this example, you can go tothe Incident table (incident.list) where you can filter for Sys ID > is > 1c741bd70b2322007518478d83673af3, and you will get the target record.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:21 AM
You can do that on the Journal Entry table [sys_journal_field], filter for Element 'work_notes' and you can see the User ID of the User who added the work note.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:27 AM
That worked perfectly thank you very much for your quick answer!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:29 AM
Hello,
As suggested by the other answer you need to check on the sys_journal_field table and apply the below filter:-
Please mark answer correct/helpful based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2022 09:53 AM
Thanks, is there a way to go to the element itself from the comment, like if the comment is on an Incident, how do I go to the incident?