Experienced Page Time/EPT Salesforce Lightning Experience
Experienced Page Time is to add an EPT counter directly to Lightning Experience, which displays in the header. EPT is the time it takes to download and display the entire ....
Experienced Page Time is to add an EPT counter directly to Lightning Experience, which displays in the header. EPT is the time it takes to download and display the entire ....
Sample Code: Apex Class: public with sharing class CustomTableController { @AuraEnabled( cacheable = true ) public static List < sObject > fetchRecords( String strRecordId, String strField, ....
How to use Session Id in ANT tool in Salesforce without username and password? build.xml: <target name="deploy"> <sf:deploy sessionId="<SessionId>" serverurl="${sf.serverurl}" testLevel="RunLocalTests" deployroot="Retrieve"/> </target>
1. Enable Conversation monitoring in Supervisor Settings.2. In Supervisor Tab, expand an agent to Monitor/View the Chats.3. To view the Conversation, click Monitor link.Note:Even though the Agent ended the chat, ....
Sample Code: try { HTTP h = new HTTP(); HTTPRequest req = new HTTPRequest(); req.setEndPoint( 'https://api.github.com/users/hadley/orgs' ); req.setTimeOut( 1 ); req.setMethod( 'GET'); HTTPResponse res = h.send( req ); } catch ....
Sample Code: Apex Class: public with sharing class AccountController { @AuraEnabled( cacheable = true ) public static List< Account > fetchAccounts() { return [ SELECT Id, Name, Industry, AccountNumber, Rating, ....
Domain-based Message Authentication, Reporting, and Conformance (DMARC) is an email authentication, policy, and reporting protocol. It’s built on top of Sender Policy Framework (SPF) and DomainKeys Identified Mail (DKIM) protocols. ....
Sample Code: HTML: <template> <div class="slds-box slds-theme--default"> <table class="slds-table slds-table_cell-buffer slds-table_bordered slds-table_striped"> <thead> <tr class="slds-line-height_reset"> <th class="" scope="col"> Account Name </th> <th class="" scope="col"> Created Date </th> <th class="" scope="col"> ....
In valueOf(), the specified string should use the standard date format “yyyy-MM-dd HH:mm:ss”. Formatting using YYYY(Uppercase) is NOT the same as yyyy(Lowercase). So, change YYYY(Uppercase) to yyyy(Lowercase) to fix this ....