Salesforce delivers hundreds of innovative features three times a year during seasonal releases : Spring, Summer, and Winter. Every release brings you one step closer to a huge boost in productivity. In this blog post, we are going to take a sneak-peek at Spring '20 release new features. Let's get started.
1. Navigate to Record's Create Page with Default Field Values
Create custom buttons and links that pass default field values to a new record.
To construct a custom button or link that launches a new record with prepopulated field values, use this sample formula:
/lightning/o/Account/new?defaultFieldValues=
Name={!URLENCODE(Account.Name)},
OwnerId={!Account.OwnerId},
AccountNumber={!Account.AccountNumber},
NumberOfEmployees=35000,
CustomCheckbox__c={!IF(Account.SomeCheckbox__c, true, false)}
2. Run the flow in context of the user or the system
User or System Context...