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
Jennifer LaingJennifer Laing 

Custom Link in Lightning which Pre-populates Fields

Hello

I am trying to add a custom Lightning link to an Opportunity record.  The link successfully opens the custom object record page however, I need the Account Name and Opportunity Name to be autopopulated.  How can I achieve this in the formula?  This is the formula I currently have - which does not autopopulate the fields:

/one/one.app#/alohaRedirect/a1H/e?
&{!$Setup.Request_Fields__c.Account_name__c}"_lkid="{!Account.Id}
&"retURL=%2F"{!Opportunity.Id}
&{!$Setup.Request_Fields__c.Opportunity_name__c}"="{!Opportunity.Name}
&{!$Setup.Request_Fields__c.Opportunity_name__c}"_lkid="{!Opportunity.Id}
&"RecordType="{!$Setup.RecordTypeID__c.Request_Credit_Check__c}
MagulanDuraipandianMagulanDuraipandian
Hi,
I don't think so it will work since URL hack is not supported. Check this - https://success.salesforce.com/answers?id=9063A000000iW67QAE
Dushyant SonwarDushyant Sonwar
Hi Jennifer ,

You can set Predefined values using Lightning Quick Action . 
Below url will help you how to create a quick action with predefined values.
https://salesforce.stackexchange.com/questions/116697/create-record-in-lightning-with-populated-fields

Hope this helps :)