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
Nitin MakwanaNitin Makwana 

Display/Show Logged in user's name, job title and phone number in Quote Template

My client would like to display/show logged in user's name, job title and phone number in "Text / Image" field in Quote Template.

User-added image

So how can I accomplish this task?
 
Andrew GAndrew G
Is the current User to be the person who created the Quote?  then the "Prepared by" fields would do the job.  If necessary, you can set in the section header not to display the field labels.

If it is some other variation of user detail, then create a custom field on the Quote object and that will be available to display on the Quote template.

Regards
Andrew
Nitin MakwanaNitin Makwana
No, Current user is not the person who created the quote.

But he/she is the person who is actually currently logged into the SalesForce account using following login screen.

User-added image
Andrew GAndrew G
Investigate a Formula field on the object with a formula like:  $User.FirstName + " " +$User.LastName

Regards
Andrew