Group Approval to be sent to a single email address for multiple approvers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 03:28 AM
Hello Gurus,
I am looking to find out whether it is possible to create a group approval which generates a single email notification that is sent to a group`s email address instead of sending one to each group member... ( Using OUT-OF-BOX Functionality) ?
Thanks a lot !
Maros
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2015 09:02 AM
Any update, I am having the same issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-27-2015 09:04 AM
Martin,
I don't think it is possible.. Otherwise, how would ServiceNow know who approved it if a response was sent from a "generic" email address ?
hope that helps ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2015 07:47 AM
I'm getting the same issue.. (on my dev instance (Fuji)
I want one email to go to the group but will accept an approval from any of the group members (based on them having an approval being created).
Looks like "include members" isn't working as you'd expect??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2015 08:33 AM
I can't find any reference to the field include_members in any BR or Script include.
I think... It's the approval.inserted event that gets created that triggers the email (the approval has already been I guess)..
Approval Events (Task) BR
if (current.state.changes() && current.state=='requested') {
var event = "approval.inserted";
if (isRequest)
event = "request.approval.inserted";
else if (isSCTask)
event = "sc_task.approval.inserted";
gs.eventQueue(event, current, gs.getUserID(), gs.getUserName());
updateTask(current, current.approver.getDisplayValue() + " requested to approve task");
}
If you modified this to NOT create the standard event (which triggers notification) when the parent group has the "include_members" = FALSE then maybe that would work? maybe using current to refernce the request/group etc???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-26-2019 12:34 AM
Hi
I have the similar requirement, do anyone got solution for this to send email notification to group email instead of users.
Thank you