function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
mhittmhitt 

Add currently assigned approver to list view

Hi,

I am trying to add the currently assigned approver to a field on the record to add the user to list views, but am unable to find how to do this. I am also having trouble relating the Approval Processes to our custom object to grab this info in Flows.

Any help is appreciated.
Thanks!
ANUTEJANUTEJ (Salesforce Developers) 
Hi Matt,

>> https://developer.salesforce.com/forums/?id=9062I000000IRR3QAO

As mentioned in the above link, you can try the answer mentioned for quick reference I am adding the answer here:
 
Never mind, I got the answer.
Basically, in the approval process, for every steps you can select an action. In this case, I just needed to select Field Update in the 
Final Approval Actions step to update my custom field "Approver Name" with this formula

$User.FirstName & ' ' & $User.LastName
For the logged in user

Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.  

Thanks.