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
Kimberly Wargo 1Kimberly Wargo 1 

Building the url(s) to pre-populate fields in a custom button

Hey all, building a custom button in a custom object and want to prepopulate info from another linked custom object.
As follows:
I have a custom button on a custom object called "Document Review". I created the button on the custom object called "Financial Account". The button is called "Modification Doc Review".
It should be generated from the "Financial Account" when a modification is made to that account. I have the button built with the correct record type pulling up but I need to prepopulate fields in this record from the originating object ("Financial Account").
How do I map the fields?
Example:
{!Document_Review_Process__c.Client_Name__c} = {!EAST_FinancialAccount__c.AccountName__c}
So the doc review "Client Name" should prepopulate with the "Account Name" from the orginating object "Financial Account".

Any help is always appreciated.