How to add/remove users in Call Centers in Salesforce?
1. Go to Call Centers in the setup. 2. Select the Imported Call Center. 3. Click Manage Call Center Users. 4. Add/Remove users in/from the Call Centers.
1. Go to Call Centers in the setup. 2. Select the Imported Call Center. 3. Click Manage Call Center Users. 4. Add/Remove users in/from the Call Centers.
All recipients in the to, cc and bcc fields count against this limit for email sent using Apex or the API. An example being an email with 2 addresses in ....
1. Check whether any email template has hard coded instance name. Note: To know your instance, check https://www.infallibletechie.com/2016/10/how-to-know-salesforce-server-instance.html 2. Check whether any Remote Site Settings has hard coded instance name. ....
1. You can create up to 50 criteria-based sharing rules per object. 2. Text and Text Area fields are case-sensitive. For example, a criteria-based sharing rule that specifies “Manager” in a text ....
1. Organization Wide Default 2. Record Ownership 3. Manual Sharing https://www.infallibletechie.com/2013/08/manual-sharing-in-salesforce.html 4. Role Hierarchy 5. Territory Management 6. Share groups 7. Queue 8. Implicit Sharing 9. Apex Sharing 10. Super User Access ....
Use domain URL. Check the below example Old URL - https://YOURDOMAIN--c.na35.content.force.com/servlet/servlet.ImageServer?id=01541000001xGHi&oid=YOURORDID New URL - https://YOURDOMAIN.my.salesforce.com/servlet/servlet.FileDownload?file=01541000001xGHi
Sample Code: Visualforce page: <apex:page controller="Sample"> <apex:form > <apex:pageBlock > <apex:pageMessages /> Testing Page Message <apex:pageBlockButtons location="bottom"> <apex:commandButton value="Call" action="{!check}"/> </apex:pageBlockButtons> </apex:pageBlock> </apex:form> </apex:page> Apex Class: public class Sample { public Sample() { ....
1. These options are only available to organizations using Enhanced Email. https://www.infallibletechie.com/2018/09/enhanced-email-in-salesforce.html 2. This feature is available in Lightning Experience only. 3. Check if you have Send Email action set up properly in ....
To Import related(child) records using an External ID in Salesforce 1. Make sure parent object have an External Id Field. 2. In the data loader, use Upsert operation. Note: Do ....
The original components that were made available when the Lightning Component Framework first came out live in the ui namespace (<ui:button>, <ui:inputText>, and so on). The new and improved components, ....