Where are Work Notes stored?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2012 12:08 PM
What table(s) holds the values for the Work Notes? To keep it a little simpler, let's just say Work Notes for Incidents. So the activity feed within an individual incident shows all comments and work notes done up until now. For each entry, it shows the time stamp of the entry, who made the entry, what was updated, and the actual notes.
Where in the database can I find each individual work note (or comment) entry? I assume it has to be one or several tables that are related to the Task (Incident, ...) table. It has to be somewhere 🙂
Ultimately, I want to find a way to report on all the different users who updated each Incident, so if you know a simpler way, I'm game.
Thanks,
Dan
- Labels:
-
Orchestration (ITOM)
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-17-2012 01:59 PM
It looks like everything I want is in the sys_journal_field table; but I can't determine how to relate that table with the Task table. Any ideas?
Thanks! Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2012 04:17 AM
The Element ID of the sys_journal_field table correspond to the SYS_ID of the task record.
So, if you create a database view linking your table sys_journal_field to incident through field element_id/sys_id and then you report on that DB view, you should be able to find what you are searching for.
I never tested, but this should work...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2012 04:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2012 08:03 AM
That looks perfect. I'll try it and update.