Cannot read property of ud undefined
If you face "Cannot read property of ud undefined" in Salesforce Lightning, follow the below steps. 1. Check whether you are using any reference to Apex Class in the Component ....
If you face "Cannot read property of ud undefined" in Salesforce Lightning, follow the below steps. 1. Check whether you are using any reference to Apex Class in the Component ....
Sample Query: SELECT Id, Name__c, AirDate__c FROM Advertisements__x WHERE Name__c LIKE '%Early%' here Advertisements__x is an External object. Check the below link for additional information https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_limits.htm Note: 1. In SOQL queries ....
Salesforce Connect can be used to view External Data in Salesforce. Salesforce Connect uses ODATA Service to display records from external systems. 1. Go to External Data Sources. 2. ....
If you face this "Error: myRule_1_A1 (Action Call) - We can't find an action with the name and action type that you specified.", follow the below steps 1. Check the ....
Sample package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>Process_Builder_API_Name-3</members> <name>Flow</name> </types> <version>36.0</version> </Package> This will retrieve version 3 of the "Process_Builder_API_Name" process.
Multitask with the Global Actions and Composer in Lightning Experience It’s time to free users from the tyranny of juggling multiple tabs and clicking around to find the right record ....
1. Go to Installed Packages. 2. Click "Uninstall" to Uninstall Installed Package in Salesforce. Note: If the Package components are referred anywhere, please remove the reference else we will not be ....
Sample code: urlstr = ApexPages.currentPage().getUrl().replace('.override=1', '.override=0'); The above code is used to get URL after .com in Salesforce using Apex. Cheers!!!
To compare meta data across across different organizations in Salesforce, check the below AppExchange product SFDC Config Workbook - https://appexchange.salesforce.com/listingDetail?listingId=a0N30000000q4evEAA One of the best tools to compare organizations. 1. Install the ....
If Salesforce Lightning changes not reflected in Salesforce1 mobile App, try to clear the cache. Check the below link to know more https://www.infallibletechie.com/2016/05/how-to-clear-cache-in-salesforce1.html Cheers!!!