How to find users last Logged in Salesforce Lightning App?
UserAppInfo Entity in Salesforce stores the last Lightning app logged in to by the user. So, we can get the DurableId from it and use it for querying the App ....
UserAppInfo Entity in Salesforce stores the last Lightning app logged in to by the user. So, we can get the DurableId from it and use it for querying the App ....
Salesforce Record-Triggered Flow can be used to Post Slack Message when a record is created or updated. In the following Sample Flow, I am sending a Slack Message when a ....
Using Get channel details option, we can easily get the Slack Channel Id. We can use the following steps How to get the Slack Channel Id: 1. Open Slack App ....
Salesforce "Log in to Experience as user" can be used by the Admins to login as the External Users to troubleshoot or debug the issues. Salesforce "Log in to Experience ....
It is easier to setup Forecasts Quotas in Salesforce. Check the following steps for reference. 1. Go to Forecasts Settings in the Salesforce Setup. 2. Click Edit on Show Quotas. ....
lightning__UtilityBar should be used as the target in the Lightning Web Component for Salesforce Console navigation App Utility. Sample Lightning Web Component: HTML: <template> <lightning-card class="slds-var-p-around_small"> <lightning-record-edit-form object-api-name="Case" onsuccess={handleSuccess}> <lightning-messages></lightning-messages> ....
Salesforce Record-Triggered Flow can be used execute Skills-Based Routing Rules after record creation. In the Salesforce Record-Triggered Flow, make use of Route Work action to call or invoke Salesforce Skills-Based Routing Rules ....
Lookup element on the Screen Flow can be used for User Lookup in Salesforce Flow. Sample Flow: In the above Flow, I have used "Field API Name" as CreatedById and ....
"Enable Flow logs" should be enabled to troubleshoot and debug end-to-end Amazon Connect Flows. 1. Go to Amazon Connect in AWS Console. 2. Select the Amazon Connect instance. 3. Select ....
In Salesforce Lightning Web Component lightning-input-field, we can make use of value attribute to pass and set the value. Sample Checkbox Field: Sample Lightning Web Component: HTML: <template> <lightning-card class="slds-var-p-around_small"> ....