Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2023 06:09 PM
Hello everyone.
I would like to know if servicenow can do the following with worknotes.
For example, if user A contributes something in wokrnotes, user B can contribute against user A's comments (similar to slack's thread feature).
Thanks in advance.
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2023 10:49 PM
You can give a try by,
- Create a new table which extends the sys_journal_field table.
- In the new table add an extra field called parent.
- Reply to a particular comment/notes will have the parent field value as the sys_id of this parent comment/notes record.
- Design a new custom formatter (All -> System UI -> Formatters) to handle the threaded display of the notes/comments.
- Add the formatter to Form using form design.
This is high level design, but at micro level it takes lot's of efforts as we need to develop all the functionality which OOB work_notes is having.
Thanks,
Anvesh
Anvesh
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-13-2023 02:33 AM
Thank you both!!