How to rename related list in Salesforce custom relationship?
Rename Tabs and Labels in Salesforce Setup can be used to rename related list. Check the following steps for reference. 1. If the child object is a custom object: From ....
Rename Tabs and Labels in Salesforce Setup can be used to rename related list. Check the following steps for reference. 1. If the child object is a custom object: From ....
Rename Tabs and Labels in Salesforce Setup can be used to rename related list. Check the following steps for reference. 1. From Setup, go to Customize > Tab Names and ....
Use the following sample code for reference to get the URL for the object tab in Salesforce using Apex. Sample Code: Schema.DescribeSObjectResult r = Account.sObjectType.getDescribe(); String URLforObj = URL.getOrgDomainUrl(); URLforObj += ....
To find the browsers used by the users for Salesforce login, go to Setup --> Administer --> Manage Users --> Login History. Cheers!!!
Starting from Summer '15, Salesforce will end their support for Microsoft IE 7 and IE 8 for Salesforce. After Summer '15, new features will no longer work in these features. Why Microsoft IE ....
Sample Code: <apex:page> <script type='text/javascript'> function noenter(ev) { if (window.event && window.event.keyCode == 13 || ev.which == 13) { callAcctRet(); return false; } else { return true; } } </script> ....
getOrgDomainUrl() can be used in Salesforce Apex to get your org URL. getCurrentRequestUrl() can used in Salesforce Apex to get the URL of an entire request on a Salesforce instance. ....
1. Go to Setup --> Manage Users and select Permission Sets. 2. Open a Permission Set. 3. Click "Add Assignments". 4. Select the users. 5. Click "Assign" button. Note: You ....
1. You can create only up to 1,000 permission sets. 2. Permission Set is used only for granting access. It cannot be used for revoking access. 3. User permissions cannot be included. 4. ....
Sample Trigger: trigger sendEmail on Employee__c (after insert) { List<Attachment> listAttachments = new List<Attachment>(); for(Employee__c e : trigger.new) { ....