Merging in Salesforce
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 ....
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 ....
To add a report filter by user Role, use Object Name: Owner Role in filter fields. (Or) Create a Report Type with User object
SLA - Service - Level Agreement A service-level agreement is a negotiated agreement between two or more parties, where one is the customer and the others are service providers. This ....
To allow external users to self-register in Communities, kindly modify the "CommunitiesSelfRegController" controller
1. Go to Setup --> Build --> Customize --> Communities --> Settings. 2. Check "Enable Communities", select a domain, check availability and click "Save" button. 3. Click "New Community". 4. ....