Assets best practices in Salesforce
Assets allow you to track specific information about the products and services purchased or installed by customer accounts or contacts Use assets to track everything you need to know about ....
Assets allow you to track specific information about the products and services purchased or installed by customer accounts or contacts Use assets to track everything you need to know about ....
1. Create Custom Notification Types. 2. Create Process Builder with Send Custom Notification action type. Output: Desktop: Mobile:
Add guidance in your app to get your users' attention. Use prompts to onboard and train users, highlight configuration changes and news, introduce new features, and more. You get to ....
Check the below steps to create a single joined report to show Account and its related Contacts, Cases and Opportunities. 1. Create a Joined Report. 2. Select Accounts, Contacts, Opportunities ....
Sales and Service cloud is not marketing platform like Marketing Cloud. So, the Email Opt Out field in Salesforce works as below. The Email Opt Out field will allow you ....
Access the Recycle Bin in Lightning Experience You no longer have to switch to Salesforce Classic to access the Recycle Bin. You can now view, restore, and permanently delete the ....
Topics Standard Component should be added to the Lightning Record page to setup and use Topics in Salesforce Lightning Experience. Please check the following steps for reference. 1. Edit the ....
Sample code: Lightning Aura Component: <aura:component implements = "force:lightningQuickActionWithoutHeader,force:hasRecordId"> <c:sampleLWC recId="{!v.recordId}"/> </aura:component> Lightning Web Component HTML: <template> Test - {recId} </template> Lightning Web Component JavaScript: import { LightningElement,api } from ....
Apex Class: public with sharing class PrintNotesController { @AuraEnabled( cacheable=true ) public static List < NoteWrapper > fetchNotes( String strRecordId ) { List < NoteWrapper > listNoteWrappers = new List ....
Sample Apex Class: public class EinsteinChatBotController { public class CaseOutput { @InvocableVariable( required=true ) public String sStatus; } public class CaseInput { @InvocableVariable( required=true ) public String sCaseNumber; } @InvocableMethod(label='Get ....