Preview Button in Salesforce Lightning
Cheers!!!
Sample Trigger: trigger RestrictContactByName on Contact (before insert, before update) { for (Contact c : Trigger.New) { if(c.LastName == 'INVALIDNAME') { ....
Author Apex permission in System Permissions in profile allows users to create Apex Classes. Cheers!!!
Upsert uses the sObject record's primary key (the ID), an idLookup field, or an external ID field to determine whether it should create a new record or update an existing ....
Sample Code: public class StringArrayTest { public static List<String> generateStringArray(Integer i) { List<String> listString = new List<String>(); for(Integer j = ....
The Process Builder is a tool that allows you to easily automate business processes using a convenient graphical representation of your process as you build it. Automated processes in the ....
1. Open the Dashboard. 2. Select "Post Snapshot to Dashboard Feed" from the menu. 3. Enter the comments and click "Ok". Output: Cheers!!!
1. Open the Action. 2. Click "New" under Predefined Field Values section. 3. Select the field and default value. Cheers!!!
Use the following formula to fix the issue. TODAY() - Account.LastActivityDate