Salesforce Percentage Calculation in Report
We can make use of Summary Formula in Salesforce Reports for Percentage Calculation. In the following example, I have calculated Salesforce Case Closures percentage per month by agents. 1. Go to ....
We can make use of Summary Formula in Salesforce Reports for Percentage Calculation. In the following example, I have calculated Salesforce Case Closures percentage per month by agents. 1. Go to ....
The difference between the $User.UITheme and $User.UIThemeDisplayed is that $User.UITheme variable returns the look and feel the user is supposed to see, while $User.UIThemeDisplayed returns the look and feel the ....
If your Salesforce Reps and Agents are using old login URL and want to avoid Salesforce redirection when the users uses old Login URL with wrong instance, then set the Redirect ....
We can make use of Salesforce Screen Flow for Experience Cloud Site Guest User. Sample Flow: 1. Go to Flows in Salesforce Setup. 2. Select "Edit Access" from the flow ....
In Salesforce Visualforce Page, we can get and set localStorage using JavaScript localStorage.setItem() and logcalStorage.getItem() methods. Sample Visualforce Page Code: <apex:page> <div id="txt"> </div> <script> localStorage.setItem( 'exampleItem', 'Testing' ); console.log( ....
We can find Data Storage and File Storage using Salesforce Apex. Option 1: System.OrgLimit can be used to find Data and File Storage in MB. Sample Code: Map < String, ....
To end Messaging Session due to inactivity in Salesforce Messaging for In-App and Web, enable "Automatically mark conversations inactive after a period of customer inactivity". Note: There is currently no support ....
We can download Salesforce Event Log Files using the REST API. First, we have to create a Connected App in Salesforce since we are going to use the REST API. ....
We can insert Lead record using standard Salesforce REST API. By doing a POST request to https://{Your Domain}.my.salesforce.com/services/data/v58.0/sobjects/Lead/, we can easily insert Salesforce Lead record with Session Id. Check the following ....
Salesforce Pause element in the Flow pauses the current execution of the Flow. Sample Flow with Pause Element: We can monitor Salesforce Paused Flow Interviews using the following: 1. Time-Based ....