- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2015 11:15 AM
Hello,
My organization is relatively new to ServiceNow, just implemented our instance in July. I am looking for assitance in allowing ITIL users to add an additional approver to the RITM due to no response from the original approver. I have been researching the articles posted on the Wiki about OOB ACL's that can be used to allow the "edit" UI button to appear on the related link for approvals but I haven't been able to figure out how to accomplish it. Additionally, I am wondering once I get the "edit" button to appear, will it automatically fire off a new approval email or will I have to create a business rule for that to happen?
Any input would be greatly appreciated!
Julie
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2015 07:23 PM
In the implementation that we work on, we have a link on the form caller 'Add manual approver'.
By clicking on this link users are redirected to the approver form and they can add any user to the approval for the request.
This link is a ui action.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2015 08:25 AM
Its a custom one i guess. The code can be as below:
current.update();
action.setRedirectURL('sysapproval_approver.do?sys_id=-1&sysparm_query=sysapproval='+ current.sys_id);
action.setReturnURL(current);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2015 01:49 PM
Julie,
You could also just allow them to add the Approvers and add a Manual Approval Activity in the Workflow (WF). It should fire off the Approvals that were added by someone on the Approvers Related List. I'm assuming, that since you're working in RITMs, that you have a WF already set up and don't really need to do anything with Business Rules. You could also use an Approval Coordinator if you wanted to send to Manual and WF generated Approvals.
Your biggest issue is that you'll need to pause your WF to allow the Manual Approvals to be added or just make the blanket statement that all approvals should be in the list before your WF kicks off. Hope this helps a bit in the design as well!
-Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2015 06:00 AM
Hi Chris,
Thanks for this response! This was really helpful. Working great now!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2019 09:54 PM
Hi
My ad hoc approvals are working when I add a adhoc approval the Approver gets a notification to approval. What i am trying to do is Once the Approver approves the Approval I need a notification to go out to the person who created the add hoc approval that the ad hoc approval has been approved or rejected. Can you please help