
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2019 09:51 AM
hello all,
I've given a select number of people the ability to see the Approve/Reject buttons on an approval record, even if they are not the actual Approver.
I noticed when I impersonate one of these 'privileged' users, the comments field will show then automatically disappear. I've looked through all UI Policies/client scripts, but can't figure out what is hiding the comments field. Without it, this privileged user won't be able to reject an approval record.
When I impersonate the actual Approver, I can see the comments field
Appreciate any assistance
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2019 11:49 AM
Turns out that field (Comments) is tied to an ACL for the sysapproval_approver table. So I updated the script on the write ACL for that table to include the group check (gs.getUser().isMemberOf('<myGroup>')
All is good

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2019 10:06 AM
Check is there any read or write ACL has been written on comments field. As the user needs to pass the write ACL as well to view that field on the approval form

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2019 11:12 AM
Good thought. Didn't see any ACL's that point to the comments field. If it is out of the box, then it should pop up, but didn't. Let me know if you know of any out of the box ACLs that might pertain to this field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2019 11:49 AM
Turns out that field (Comments) is tied to an ACL for the sysapproval_approver table. So I updated the script on the write ACL for that table to include the group check (gs.getUser().isMemberOf('<myGroup>')
All is good