Salesforce Formula to check whether date is within last 15 days
Sample formula:AND (Date__c <=TODAY(),Date__c >= ( TODAY() - 15 )) Output:
Sample formula:AND (Date__c <=TODAY(),Date__c >= ( TODAY() - 15 )) Output:
Salesforce Chat Transcript Status will be set to Blocked when the Agent blocks the Visitor. Please check the following post for more additional information. Chat status will be set to ....
1. Create a JavaScript file using the following code.File Extension should be ".js". window._snapinsSnippetSettingsFile = ( function() { console.log( "Chat invitation file loaded" ); ....
1. Go to Setup and Enable Account Team.2. Add Account Team related list to the page layout.3. If you are using Single-Related list component on the Lightning Record page, add ....
lightningSnapin__ChatMessage in Lightning Web Component can be used to handle the messages and modify or intercept in the Salesforce Embedded Service Deployment Chat.Implementation:If the agent or user enters "test", it ....
Sample Code: HTML: <template> <lightning-card> Active Date/Time(GMT/UTC): {activeDateTime}<br/> {timer} </lightning-card> </template> JavaScript: import { LightningElement, api, wire } ....
Use toISOString() to convert Date Time to UTC or GMT in Javascript. Sample code: let currentDateTime = new Date(); console.log( 'currentDateTime is ' + currentDateTime ); console.log( 'currentDateTime in UTC ....
Sample Code:Visualforce Page:<apex:page controller="DatabaseGetUpdatedController"> <apex:pageBlock> <apex:pageBlockTable value="{!listAccounts}" var="acc"> <apex:column headerValue="Name">{!acc.Name}</apex:column> <apex:column headerValue="Industry">{!acc.Industry}</apex:column> <apex:column ....
Use Related To ID to set WhatId while creating Task record from Process Builder.Please check the following screenshot for reference.
We cannot set sharing and permissions for the Master and Detail objects separately. Detail and subdetail(parent and child) records inherit security settings and permissions from the master(parent) record. You can’t set ....