Email Relay in Salesforce
An Email Relay uses an Email Server to send email that originated elsewhere. Salesforce System administrators can enable the feature by navigating to Setup, entering Email Relay Activation into the ....
An Email Relay uses an Email Server to send email that originated elsewhere. Salesforce System administrators can enable the feature by navigating to Setup, entering Email Relay Activation into the ....
The email delivery setting 'Enable Sender ID compliance' automatically adds 'no-reply@Salesforce.com.' to the Sender field on emails sent from Salesforce. Some email clients may append the phrase 'Sent on behalf ....
The tabOrderHint attribute is used as a hint when calculating the value to set for the tabindex value of the rendered HTML element or elements. It’s used to indicate the ....
We can use both NOT and LIKE operators in Salesforce SOQLs. Please check the following SOQL for reference. Sample SOQL: SELECT Name FROM Account WHERE NOT Name LIKE 'Test%' https://youtu.be/2CW4Xd8U8aI
SandboxPostCopy Interface To make your sandbox environment business ready, automate data manipulation or business logic tasks. Extend this interface and add methods to perform post-copy tasks, then specify the class ....
Custom junction objects can't have detail objects. That is, a custom junction object can't become the master object in a multilevel master-detail relationship. This is a limitation from Salesforce. Check ....
1. Go to Maps and Location Settings. 2. Enable Maps and Location Services. When you enable autocomplete on standard addresses, Salesforce app users can enter text on standard address fields and see ....
Make sure the users have "View and Edit Converted Leads" permission. Check this for more information on this permission. https://www.infallibletechie.com/2018/10/profile-permission-to-view-and-edit.html Sample Code: Trigger: trigger LeadTrigger on Lead ( after update ) { Map < Id, Id > mapOpptyIdLeadId = new Map < Id, Id >(); for ( Lead objLead : trigger.new ) { /* Once the Lead is converted, getting the Converted Opportunity Id */ ....
Auto Activate should be disabled while refreshing to avoid auto activation of sandbox. The old sandbox will be available until we click Activate button after the refresh. Activating a refreshed ....
Sample Field Set: Sample Code: for ( Schema.FieldSetMember f : SObjectType.Employee__c.FieldSets.Test.getFields() ) { system.debug( f.getFieldPath() ); } Here Employee__c is a Custom Object and Test is the field set name. Output: