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
Hermann OuréHermann Ouré 

Update custom field with Approver Name

Hello,
I have an approval process on on Custom object. And I would like to update a custom field "Approver Name" with the name of the "Actual Approver"
So let's say the name the of Actual Approver is "Frank Karl" I would like the custom field "Approver Name" to be automatically updated with "Frank Karl"
User-added image
How can I do it with out of the box functionnality?
Thanks
 

Best Answer chosen by Hermann Ouré
Hermann OuréHermann Ouré

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


 

All Answers

Hermann OuréHermann Ouré

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


 

This was selected as the best answer
Rohit Prasanna ChandramouliRohit Prasanna Chandramouli
Hi, Does {{$Api.User_Id}} work?