Adding Change Owners to CAB Attendee List
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2018 03:30 AM
We have been using the CAB Workbench functionality (Except the portal itself, due to latency issues) for a while now. We have been able to automate the generation of both Agendas and Meeting minutes, which has resulted in significant reduction in manual intervention and effort.
However, there is one issue which would automatically cover a lot of audit evidence requirements for us, and I expect others, that is not currently in the OOTB Workbench functionality. While Board Groups (Members), Board Members and Delegates, are automatically added to CAB Meeting Attendee lists, Change Owners are not. This seems like a glaring omission, and probably has a relatively simple fix.
Can anyone please advise how we can go about having Agenda Item Change Owner's automatically added to the attendee list, for consolidated distribution of the meeting invites, and to be able to track and evidence attendance?
Thanks
Shane Smith
- Labels:
-
Change Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2019 02:08 AM
Try somethign like this.
var CABAgendaItem = Class.create();
CABAgendaItem.TASK_FIELDS_FOR_ATTENDEES = ["assigned_to", "cab_delegate", "requested_by", "assignment_group.manager"];
CABAgendaItem.prototype = Object.extendsObject(sn_change_cab.CABAgendaItemSNC, {
type: 'CABAgendaItem'
});
// Bindings for namespaced code
CABAgendaItem.newAgendaItem = CABAgendaItemSNC.newAgendaItem;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2019 03:39 AM
I tried that, didnt work...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2024 10:23 PM
Hi,
Can you please advise how I can add change task (change_task) assigned to in attendees list.
I have to add all the change related task assignee in attendee list.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2019 09:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2019 11:03 PM
Great Idea!
Thank you very much, I really appreciate your help with this.