How to add work notes and activity history of an other table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 03:54 AM
Hallo everybody,
I have a requested item workflow with catalog tasks.
I want to show Work notes from the requsted items on my catalog tasks. The requested item is already referenced in the catalog tasks so how to show the work note field + activities + post button and so on from the requsted item on my catalog tasks?
Best regards

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 04:23 AM
Hi,
you can write a business rule on RITM. Before update insert BR.
Condition:
Whenever work notes changes.
Script:
var gr = new GlideRecord('sc_task');
gr.addquery('parent',current.sys_id);
gr.query();
while(gr.next()){
gr.work_notes= current.work_notes;
gr.update();
}
Thanks,
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2019 01:31 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 06:35 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2019 06:39 AM