- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-07-2019 11:26 PM
Hi All,
As per OOB functionality my approvals should show list of requests which are needs to be approves this should work for approve as well as his delegate. but it is not working for delegates. i checked with filter which as approver is javascript:getMyApprovals(). this is fine also i tried by activating Business rule approval query.
Can anyone help on this??
Thanks and Regards,
Pratima Deshmane
Solved! Go to Solution.
- Labels:
-
Change Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2019 12:42 AM
Hi Prati,
did you check the delegate record has valid values; start and end date is proper
approvals checkbox is true
What happens if you open the record directly using sysapproval_approver.LIST
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2019 04:16 AM
Hi Prati,
Can you share what update you made to make it work? It would be helpful
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2019 04:24 AM
Yes sure Ankur..
i have modified script to this:-
var u = getMyApprovals();
var gr = new GlideRecord('sysapproval_approver');
gr.addQuery("approver", u);
gr.addQuery("state", "requested");
gr.orderByDesc('sys_updated_on');
gr.setLimit(50);
gr.query();
its working for me and now delegate users are able to see list of request which needs to be approved by approver or his delegate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-25-2021 04:05 AM
Hi,
We have similar issue. Approver user 'A' delegated to 'B', now when 'B' logs into Service Portal and unable to see the Approval tab itself. Is there any role required for user 'B' to view the approval requests which are delegated to him.
regards,
Raghesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2021 09:35 AM
i have the same issue, has anybody an solution (Iam on Paris Release)