How to do documentation in Salesforce Flow Development?
Use Description field to document Salesforce Flow Development. This will make easier for yourself and other developers, admins and architects when they look at it. Share the purpose of the ....
Use Description field to document Salesforce Flow Development. This will make easier for yourself and other developers, admins and architects when they look at it. Share the purpose of the ....
1. Create a variable with the name prechatInfo. 2. Use Loop element in the loop to iterate it. 3. Decision element can be used to check key and value. Also, ....
Sample Flow: Add Screen Pop Action: Route Work Action: Note: routingInteractionInfoListshould be used from the Add Screen Pop Flow element. Output: Video Reference: https://www.youtube.com/embed/bhqhftApM_I
Lightning Web Component: <template> <lightning-card title="Sample LWC Component"> <lightning-input type="text" onchange={handleInputChange}></lightning-input> <lightning-button label="Open Flow" onclick={openFlow}></lightning-button> </lightning-card> </template> JavaScript: import { LightningElement } from 'lwc'; import { NavigationMixin } from 'lightning/navigation'; ....
Create a Record Triggered Flow to populate Account when Contact is selected in Name(WhoId) while creating Task. Sample Flow:Find Contact from Who Id Salesforce Flow:Note:"003" used here is to make sure ....
1. In the flow create a Variable with the name recordId. Make sure it is available for Input by enabling "Available for input" checkbox. 2. Quick Action can be create ....
In Salesforce Setup, go to Scheduled Jobs to find actively Scheduled Flows in Salesforce. 1. Go to Scheduled Jobs in Setup. 2. Create a List View with Type as "Scheduled ....
1. Go to Paused and Failed Flow Interviews in Setup. 2. Select All Failed Flow Interviews. Video Reference: https://www.youtube.com/embed/5jQdk07px04
By enabling "Let admins debug flows as other users", we can run the Flow as another user and test it. 1. Go to Process Automation Settings. 2. Enable "Let admins ....
Equals Count operator can be used to find the count or number of records in Record Collection Variable in Salesforce Flow. Sample Flow: Flow Configurations: ....