List Views in Salesforce
List views are used for frequently performed searches. Using List views we can: Save list views for future use. Filter on a specific field or fields. Specify which groups of ....
List views are used for frequently performed searches. Using List views we can: Save list views for future use. Filter on a specific field or fields. Specify which groups of ....
To add users to Public Group using Apex, we have to insert the entries in GroupMember entity. As per the following trigger, when a user record is created, the created ....
This error occurs when action attribute value is wrong. action="{!methodName}" is correct. action="methodName" is wrong.
Cross filters let you filter the parent records in a report by their related child records, using WITH or WITHOUT conditions.Example: Opportunities with Products
Merge used to avoid duplicate records. Merging is available only for the below Objects Accounts Contacts Leads Merging cannot be undone. Example: 1. Go to Account tab and click "Merge ....
There are two Communities licenses for external users: 1. Customer Community 2. Customer Community Plus 3. Partner Community The Customer Community license is similar to a High Volume Customer Portal ....
Sample SOQL: SELECT Id, Name FROM Product2 Output:
Sample Code: Trigger:trigger Sample on Opportunity (before update, before insert) { if (Trigger.isInsert) { SampleApexClass.SampleMethod(Trigger.new); } else if (Trigger.isUpdate) { SampleApexClass.SampleMethod1(Trigger.new, Trigger.old); }} Apex Class:global class SampleApexClass () { global ....
Sample Code: Trigger:trigger Sample on Opportunity (before update, before insert) { if (Trigger.isInsert) { SampleApexClass.SampleMethod(Trigger.new); } else if (Trigger.isUpdate) { SampleApexClass.SampleMethod1(Trigger.new, Trigger.old); }}Apex Class:global class SampleApexClass () { ....
To associate multiple contacts to a single contact in Salesforce, create a custom field "Primary Contact" as a lookup field to Contact(Self-relationship) in Contact object. Whenever the user clicks the ....