Flows QA - Chirag-ahir/SFC-Preparation GitHub Wiki
What is Flow interview? A flow interview is an instance of a flow execution, representing a complete run of that flow.
What is Pause Element in Flow? The pause element allows you to temporarily hold the flow's execution and resume it later, either after a specified time or when a specific event occurs.
How can you handle errors in a flow?
- You can handle errors in flows using fault paths. When an error occurs in a flow element, the flow can be directed to a fault path, where you can define how the error should be handled. Also, you can use debug logs to get to know about errors.
- As other options, you can use the Automation app, and you also receive the email for failed flow if any error occurs in the flow.
What is the transform element? The transform element in Flow is used to map and convert source data to target data. It can be utilized in screen flow, auto-launched flows, and record-triggered flow.
What is a fault connector in flows? A fault connector is used to handle errors and exceptions that occur during the flow’s execution.
What do you mean by rollback mode in flow? Rollback mode ruins the flow without permanently changing the data in your Salesforce records. Any changes made in the flow during the interview will be rolled back once the flow interview finishes. Record-triggered flow always runs in rollback mode.
What frequencies can we set in Schedule Triggered Flow? Scheduled triggered flow can be triggered at the frequency of once, daily, and weekly.
What is Flow Trigger Explorer? The Flow Trigger Explorer showcases all Flows associated with a particular object and intiates when a record is added, modified or deleted.
What are action elements in Flows? Action elements carry out specific tasks like sending an email, updating a record, or invoking Apex code.
What do you mean by bulkify a flow? To bulkify a Flow means to design and optimize it to efficiently handle and process multiple records at once without hitting Salesforce's governor limits
What is the difference between Fast Field Update and Actions & Related Records?
- Fast Field Updates: Update fields on the record that trigger the flow to run. In this case, the flow runs before the record is saved to the database.
- Actions & Related Records: Update any record and perform actions like sending an email. In this case, the flow runs after the record is saved to the database.
From where can you enable the Pause button on the flow? You can find option to Enable the pause button on the flow from --> Process Automation --> Let users pause flows