Record Triggered Flows in Salesforce

by Rijwan Mohmmed
0 comment
record-triggered-flows-in-salesforce-techdicer

Hello folks, today we are going to discuss Record Triggered Flows in Salesforce. A record-triggered flow allows you to automatically perform actions in Salesforce behind the scenes, without any user interaction, once a record is created and/or updated, or deleted. In some regards, it’s similar to a workflow rule and process, which are triggered when a record is created and/or updated/deleted. 

You can create a flow that updates another record, sends a notification, initiates a process, or maintains data consistency by triggering it from another record. The record-triggered flow allows you to fine-tune the timing of your automation to avoid conflicts and improve performance.

Also, check this: Custom Footer Buttons In Screen Flow

Key Highlights :

  1. Only when a record is created.
  2. Anytime a record is updated.
  3. Anytime a record is created or updated.
  4. Only when a record is deleted.
  5. Use for Fast Field Update, before commit in database flow can change the same object record information.
  6. Perform Related Records and Actions, we can manipulate related records and use multiple actions After Flow.
  7. Run Asynchronously used mainly break the transaction and runs in a new transaction.
  8. Scheduled Paths use to run the action after a specific time. We can set the time.

Process :

There are 4 ways in the Record Trigger Flow

1. Fast Field Update: Used for updating the same object record update before committing the transaction.

  1. The Before-save Flow is a trigger that is performed before an operation – such as an insert, update, delete, etc.
  2. Data can be checked or changed before being updated or inserted into the database using a Flow.
  3.  In a Before-save, each record is not saved to the database again, so it is much faster.

You can check my full blog on Fast field by clicking below link

Before Save / Fast Field Update Flow Salesforce

2. Related Records and Actions: This will call on after the DML operation and used to work on related records and call many actions like

  1. Creating, updating, or deleting other records
  2. Calling sub-flows
  3. Calling actions, such as sending email alerts or posting to Chatter, call invocable Apex class.

3. Run Asynchronously: Immediately after the record update that triggered the flow is complete. Used mainly to break the transaction and run a new transaction. Work the same as future methods. Executing more advanced scenarios like sending requests to external systems or performing other longer-running processes. Read full blog on click below link.

Run Flow Asynchronously In Salesforce

4. Scheduled Paths: Use to run the action after a specific time. In the future, after the trigger has fired, based on dates and times. Scheduling reminders or follow-ups based on dates in the record that triggered the flow, such as Close Date.

You can check my full blog on Scheduled Paths by clicking the below link

Scheduled Paths Flow In Salesforce

Output :

Reference :

  1. Get Started with Triggered Flows
  2. What Is a Record-Triggered Flow?
What’s your Reaction?
+1
0
+1
0
+1
1
+1
0
+1
0
+1
0

You may also like

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.