- Magulan Duraipandian
- No Comments
Category: Salesforce
Difference between SOAP and REST APIs
RESTREST's sweet spot is when you are exposing a public API over the internet to handle CRUD operations on data. REST is focused on accessing named resources through a single ....
Interaction Log layout in Salesforce
Use the interaction log to write notes in call logs while using a Salesforce console application. A call log is an activity record that automatically generates when you use a ....
Chat settings in Salesforce
Chat window: To enable or disable chat settings in Salesforce, follow the below steps 1. Go to Customize --> Chatter --> Chat Settings. 2. Enable or disable to view or hide.
Visualforce Components in Salesforce
Similar to the way functions work in a programming language, custom Visualforce components allow you to encapsulate common design patterns and then reuse those patterns in one or more Visualforce ....
Simple action status in Salesforce
Sample Code: <apex:page controller="Sample"> <apex:actionstatus id="counterStatus"> <apex:facet name="start"> <div class="waitingSearchDiv" id="el_loading" style="background-color: #fbfbfb; height:100%;opacity:0.65;width:100%;"> <div class="waitingHolder" style="top: 100px; ....
How to avoid CPU time exceeded exception in Salesforce?
1. Avoid nested loop. Make use of Map data type instead of nested loop. 2. Make use of future methods. 3. Try to use Aggregate SOQL. Check the below link ....
How to debug workflow rules in Salesforce?
1. Go to Setup --> Monitor --> Log --> Debug logs. 2. Click "New" button and add your name to get the debug logs. 3. Create or update the record ....