- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2016 08:52 AM
We have an Emergency change workflow that generates approvals. Then an email notification is fired once the approval is created letting the group know an approval has been created. We have an out of the box email template for routine changes, but I'm needing to alter this for emergency changes. There are 3 different approvers for Emergency and each email will need to look a little different.
I've created a template for all 3 off the different approvals. However, I'm not sure how to get the notification to send during the different approvals based on the filter conditions.
One example:
A group approval. The group type = Bus Approval so I need it to pick this.
Since the approval is pointed at the sysapproval_approver table I'm not able to get filter condition of approval group = type =bus approval. Does this need a script? Is there maybe a different way I can do this? Can I kick off the email in the workflow on the approval-group activity?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2016 03:28 AM
I think you can dot walk to the group approval record by using the 'group' field on sysapproval_approver? do you see a field called group? that's the one that links that approval to the approval group record. so group.type or if type lives on the group group.assignment_group.type
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2016 03:28 AM
I think you can dot walk to the group approval record by using the 'group' field on sysapproval_approver? do you see a field called group? that's the one that links that approval to the approval group record. so group.type or if type lives on the group group.assignment_group.type
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2016 10:32 AM
I found it under group.assignment_group.type. Thanks! I knew it was there I just couldn't find it.