Adoption of Chatter in Salesforce
Use Cases: 1. Major or Minor Announcements 2. Sharing Files 3. Discussion Forums Report can be used to check the adoption. Check the following steps: 1. Create a Report on ....
Use Cases: 1. Major or Minor Announcements 2. Sharing Files 3. Discussion Forums Report can be used to check the adoption. Check the following steps: 1. Create a Report on ....
1. Ten Minute Build The 10-minute build practice is an extreme programming practice where the code base is designed by the developer to be built automatically. Having a simple build ....
We can set up a report to run itself daily, weekly, or monthly and send the results automatically to the people who need to see them, so that we don’t ....
Now users with Partner Community and Customer Community Plus licenses can view the records of other external users within their account hierarchy. External account hierarchies take the complexity out of ....
Sample Code:import { LightningElement, wire } from 'lwc';import { CurrentPageReference } from 'lightning/navigation';export default class Sample extends LightningElement { @wire(CurrentPageReference) currentPageReference; connectedCallback() { console.log( 'Param ' + ....
Salesforce Validation Rules are stored in ValidationRule entity. So, we can query the ValidationRule entity to fetch Salesforce Validation Rules using Tooling API. Query: SELECT Id, FullName, ValidationName, ErrorMessage FROM ....
Below trigger fetches the Accounts of the converted Leads. It sets the Record Type Id to External Account Record Type Id if the Account's Record Type Id is not External Account ....
Channel-Object Linking in SalesforceCreate rules to quickly link channel interactions to objects such as contacts. You can fine-tune these rules so that linking happens automatically, or so that your agents ....
Sample Code:Apex Class:public class EinsteinChatBotController { public class CaseOutput { @InvocableVariable( required=true ) public String sCaseNumber; @InvocableVariable( required=true ) public String sStatus; ....
Using GitHub, we can easily test the Salesforce Embedded Service Deployment Chat Code Snippet. To test the Embedded Service Deployment Code snippet, please follow the below steps: 1. Create a ....