- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2022 10:07 AM
Users that approve requests can have delegates approve requests for them. As far as I know, when a delegate approves the request, the approval record shows the approver user's name, not the delegated user's name whom actually approved it.
I need to create a report that shows the user that actually approved the request. Is there a table or something that shows who actually approved requests?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2022 06:19 AM
I was able to accomplish this by adding a new field on the approval table 'Approved by' and creating a after update business rule to update that field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2022 10:55 AM
Hi,
Outside of creating a metric to specifically capture this, the only "easy" way would be to report on the sysapproval_approver table and look at state is approved and then view the updated by (this would only work if the last update to that record was in fact by the person who approved it).
Otherwise, you'd have to report on the audit of the record/sys_history_line table to for approval records where the new value = approved and then you can get the literal user who did that from the User field.
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2022 11:04 AM
Ok, thanks Allen!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2022 06:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2022 08:09 AM
Thanks Melissa, this is great!