Additional comments from RITM to SCTask
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2017 01:17 PM
Hi Community,
I want to know if is possible see the Additional comments posted(activity) on RITM into SCTask form.
In our setup, if the SCTASK owner posts to Additional Comments it goes to the Client. Then the client posts a response but it only goes back to the RITM, as our clients respond using RITM form from Portal.
Thanks
Lex

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2017 04:05 PM
you can also write a notification on RITM to send updated comment info to fulfillers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-03-2018 10:43 AM
How would you go about writing the notification on RITM to send updated comments to fulfillers exactly?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-04-2018 05:42 AM
trigger an event from business rule and pass the assigned to's (if assigned to is empty then send to group ) of the tasks as an event parameter
var assigneeArr = [];
var assignGroupArr = [];
var task = new GlideRecord('sc_task');
task.addQuery('request_item', current.sys_id);
task.addActiveQuery();
task.query();
while(task.next()){
if(task.assigned_to != '')
assigneeArr.push(task.assigned_to.toString());
else
assignGroupArr.push(task.assignment_group.toString());
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2019 03:19 AM
Hi there,
Checkout my reply on the following post:
Additional comments on req vs ritm vs sc_task
Hope it helps you.
Regards,
Snehal Madakatti