Different Types of Clouds in Salesforce
Sales CloudService CloudMarketing CloudExperience Cloud(Community Cloud)Revenue Cloud(CPQ)Commerce CloudFinancial CloudGovernment CloudEducation CloudIntegration CloudHealth Cloud
Sales CloudService CloudMarketing CloudExperience Cloud(Community Cloud)Revenue Cloud(CPQ)Commerce CloudFinancial CloudGovernment CloudEducation CloudIntegration CloudHealth Cloud
closeTab() from lightning:workspaceAPI can be used to end the Messaging Session. 1. Create the following Lightning Aura Component. Component: <aura:component implements="flexipage:availableForAllPageTypes" access="global"> <lightning:workspaceAPI aura:id="workspace"/> <lightning:button label="End Messaging Session" onclick="{!c.closeFocusedTab}"/> </aura:component> ....
Sneak Peek in Salesforce chat allows agents to view what the visitors are typing before they send the message. Follow the below steps to set it up in Salesforce. 1. ....
lightning-helptext tag with content attribute can be used for Tooltip Text in Salesforce Lightning Web Component. content attribute in lightning-helptext tag can be used for Tooltip Text in Salesforce Lightning ....
Sample Code: <aura:component implements="force:appHostable" > <lightning:card> <div class="slds-m-around_medium"> Test<lightning:helptext content="Testing Help Text"></lightning:helptext><lightning:input variant="label-hidden"></lightning:input> </div> </lightning:card> </aura:component> Output:
A simple SOQL on NetworkMember object can be used to find Email Preferences of the Salesforce Experience Cloud Site Users Sample SOQL: SELECT Id, Network.Name, Member.Name, DigestFrequency, PreferencesDisableAllFeedsEmail, PreferencesDisableBestAnswerEmail, PreferencesDisableBookmarkEmail, ....
To setup Named Credential in Salesforce for Microsoft, get the Client Id, Client Secret and Tenant Id from the Azure Portal. Note: Tenant Id should be used in the Auth. ....
A simple Quick Action can be used to create Child Case using Parent Case information in Salesforce. 1. Create a Quick Action. Note: Add the Predefined Field Values. 2. Add ....
If you are using batch class, then make sure to implement "Database.AllowsCallouts".Sample Code:global class BatchClass implements Database.Batchable<sObject>, Database.AllowsCallouts
1. Create required Queues and add users to it. 2. Create an Omni-Channel Flow. 3. Create a Record-Triggered Flow. Call the Omni Flow using Sub Flow component. When the Case ....