The Complete Guide to Salesforce Flow | Salesforce Ben (2024)

Salesforce Flow empowers you to build complex business solutions using clicks, not code. Flow Builder is the most powerful tool that a Salesforce Admin has at their disposal, giving you similar powers that Salesforce developers have. If you need to perform mass updates across multiple unrelated records, or complex logic into opportunity conversion, these are common examples for when you should use Flow.

The use cases for Flow are endless, and its capabilities are growing with every Salesforce release. Formerly Visual Flow, Salesforce Flow has gone through significant upgrades to give us the Flow Builder interface, after being completely rebuilt from the ground up!

Today, I’ll take you through Salesforce Flow basics, and answer the following questions: What are Flows? What are Flow’s features? How can Flows be called? And finally, can Flows become the ‘one tool to rule them all’?

What are Salesforce Flows?

Flows allow you to build complex business automation using clicks instead of code. As an admin, Flows are going to be your best friend because you will be able to handle the majority of complex business requirements without the help of a Salesforce developer!

The benefit of Salesforce Flow is that they are easy to maintain because anyone (assuming they know Flows) should be able to follow along with what you built.

Flows are accessible through the Setup menu. Simply enter ‘Flows’ into the Quick Find box, and create a new Flow to get started.

Read More: Process Builder Vs Flows – Become the Ultimate Admin

The Complete Guide to Salesforce Flow | Salesforce Ben (2)

There are 3 main “building blocks” of any Flow:

1. Elements are the individual building blocks of the Flow. These perform logical actions such as assignments, decisions, or loops. There are also data elements that will query the database or commit record changes.

2. Connectors determine which element leads to which. Winter ‘21 enables Auto-Layout, and connects the Elements together automatically.

3. Resources are the individual variables of data that are to be used in a Flow – these can be strings of text, numbers, records, formulae, or collections.

You can see these in action on the Flow Canvas below. This example Flow below is a declarative replacement for a ‘before’ trigger. In the ‘Start’ element at the top you can see that the trigger is when a record is created or edited, and it should run before the record is saved.

The Complete Guide to Salesforce Flow | Salesforce Ben (3)

What Are the Basic Flow Features?

On the left-hand side of your Flow Canvas, you’ll see the Toolbox. Depending on the type of Flow that you’re working on (whether it’s a Screen Flow, Auto-Launched Flow, etc.) you’ll see a different set of tools.

Manager Tab

In the screenshot below, you can see the Manager tab that contains the existing elements and resources of the Flow (this is from an Auto-Launched Flow):

The Complete Guide to Salesforce Flow | Salesforce Ben (4)

This is where your Resources are kept. Some examples of Resources are Variables, Collections, Constants, Formulae, or Choices.

  • Variables are where you can store data to use in the Flow. These can be Text, Number, Record, Dates, Currency, Boolean, or Picklists just to name a few.
  • Collections are a group, or ‘list’, of Variables stored together. Collections allow you to process multiple records at once, or ‘bulkify’ your Flows.
  • Constants are values you set once and never change. They are useful when you want to refer to a single value multiple times through your Flow – if you ever need to change that value, you just need to change it once and it is reflected throughout the Flow.
  • Formulae display a dynamic value depending on other values within your Flow. If you need to calculate a future date based on when the Flow was run, a Formula will be helpful. If you need to calculate and set a currency based on an interest rate, a Formula can be used.
  • Choices are used within Screen Elements to display an option to the user.

Elements – Interaction, Logic, Data Elements

Next, you have the Elements screen. This is where you can create new Resources and Elements in the Flow. In the screenshot below, you’ll see a ‘Screen’ element (because I took the screenshot in a Screen Flow, which will not appear in a Flow type that doesn’t support Screens, such as an Autolaunched Flow). There are a number of different elements that will dynamically show up depending on the type of Flow you’re working with.

Interaction elements include Screen, Action, or Subflow.

  • A Screen element, only available in a Screen Flow, allows you to present a screen to the user. This screen can display information from the data your Flow is working on, or it can be used to collect information from the user.
  • An Action element allows you to pass data through to a pre-existing standard or custom action such as Send Email, a Quick Create, or a custom Apex action.
  • A Subflow element allows you to call another Flow within your current Flow – this means that if you have another complex Flow set up, you don’t need to replicate the logic in your new Flow. This also makes maintenance easier as you only need to update your logic once if you design your Flows well enough!

Logic elements include Decisions, Assignments, and Loops.

  • Decisions allow you to split your Flow depending on the data that’s being sent through it.
  • Assignments allow you to give a value to a variable.
  • Loops allow you to handle multiple variables at once using collections.

Data elements include Create, Update, Get, or Delete records.

Essentially, any time you want to edit a record in the Salesforce database, you’ll need to use one of these Data elements. These will also dynamically display depending on the type of Flow you’re running. If you’re running a ‘before triggered’ Flow, you’ll only be able to use ‘Get’, for example.

How Do You Call a Flow in Salesforce?

To ‘call’ a Flow means that something happens in order to kickstart the Flow process. This could be a Salesforce record change, from another process in Apex/Process Builder, or automated on a recurring schedule.

When you create a new Flow, you’re prompted to select the type of Flow you wish to create.

The Complete Guide to Salesforce Flow | Salesforce Ben (6)
  • A Screen Flow is called through a button or action, or displayed in a Lightning Page or the Utility Bar, and appears as a screen to the user to interact with. This cannot be automatically called.
  • A Schedule-Triggered Flow runs automatically to a recurring schedule. This is handy for tasks that need to be performed daily on a set of records, or to handle jobs that run frequently.
  • Autolaunched Flows are called through Apex, Process Builder, or another Flow. They can be used to perform actions automatically behind the scenes.
  • Record-Triggered Flows begin when a record is created or updated, very similar to Process Builder (more on this later).
  • Platform Event-Triggered Flows are called when a platform event is received, similar to an Autolaunched Flow.

Can Flows Be the ‘One Tool to Rule Them All’?

This is a question that I’ve been wondering about, each time Salesforce announcements huge amounts of updates for Flow in every release. But my suspicious have been confirmed. At Dreamforce ’21, Salesforce announced that Workflow rules & Process Builders will be retired, and Flow will be the only declarative automation solution on the platform.

Overall, I think this is inevitable. Salesforce has not updated the functionality of other automation solutions in many years, and due to Flow having “Apex code” like functionality, it’s by far the most powerful automation tool.

By learning and adopting Flow, you are able to help your business beyond what a declarative Salesforce Admin would have been able to do before. This means you can bring value faster to your business, without the need for expensive developers.

Summary

Today, I have taken you through the basics of Salesforce Flows to answer what Flows are, the features, and how Flows can be called. Finally, I shared my thought on why Flows could become the ‘one tool to rule them all’.

As you can see, Salesforce Flow is a powerful tool that empowers admins to build complex business solutions, possibly the most powerful tool that a Salesforce Admin has at their disposal! The use cases for Flow are endless, and its capabilities are growing with every Salesforce release.

I can’t stress enough just how much learning Flow Designer (back in the day) changed how I viewed Salesforce. I learnt that I could build a functional business system without having to learn Apex, and I could quickly assist department heads to implement custom logic in a few hours. I would recommend learning Flows to absolutely any admin who uses Salesforce (and I do!). That said, with great power comes great responsibility! There are a number of best practices that need to be followed to ensure your Flows are future proof and scalable (something we’ll go through in another post!)

As a seasoned Salesforce enthusiast and expert, my extensive experience in the Salesforce ecosystem equips me with the knowledge to delve into the intricacies of Salesforce Flow. Having worked on numerous projects, I've witnessed firsthand the evolution of Salesforce Flow from its earlier iterations, such as Visual Flow, to the current state of the art Flow Builder interface.

Now, let's break down the key concepts presented in the article:

Salesforce Flow Basics:

What are Flows?

  • Flows enable the construction of intricate business automation without the need for coding.
  • Admins can handle complex business requirements independently, reducing reliance on developers.

Accessing Flows:

  • Flows are accessible through the Setup menu by entering 'Flows' into the Quick Find box.

Building Blocks of Flow:

  1. Elements:

    • Individual building blocks performing logical actions (assignments, decisions, loops).
    • Data elements query the database or commit record changes.
  2. Connectors:

    • Determine the flow of elements. Auto-Layout, introduced in Winter '21, connects elements automatically.
  3. Resources:

    • Variables storing data (text, numbers, records, formulae, collections).

Basic Flow Features:

Toolbox - Manager Tab:

  • Contains existing elements and resources of the Flow.
  • Examples of resources: Variables, Collections, Constants, Formulae, or Choices.

Elements - Interaction, Logic, Data Elements:

  • Interaction Elements:

    • Screen: Presents a screen to the user (Screen Flow).
    • Action: Passes data to pre-existing actions.
    • Subflow: Calls another Flow within the current Flow.
  • Logic Elements:

    • Decisions: Splits flow based on data.
    • Assignments: Gives a value to a variable.
    • Loops: Handles multiple variables using collections.
  • Data Elements:

    • Create, Update, Get, or Delete records based on Salesforce database interactions.

How to Call a Flow in Salesforce:

  • Flows can be called through various methods:
    • Screen Flow: Through a button or action, displayed in a Lightning Page or the Utility Bar.
    • Schedule-Triggered Flow: Runs automatically on a recurring schedule.
    • Autolaunched Flows: Called through Apex, Process Builder, or another Flow.
    • Record-Triggered Flows: Begin when a record is created or updated.
    • Platform Event-Triggered Flows: Called when a platform event is received.

Flows as the 'One Tool to Rule Them All':

  • Salesforce has announced the retirement of Workflow rules & Process Builders, leaving Flow as the sole declarative automation solution.
  • Flow's continuous updates and Apex-like functionality position it as the most powerful automation tool.

Conclusion:

  • Salesforce Flow is a powerful tool empowering admins to build complex business solutions.
  • Continuous updates expand Flow's capabilities with each Salesforce release.
  • Learning Flow is crucial for admins to bring value faster to their business without relying on expensive developers.

In summary, Salesforce Flow stands out as a game-changer in the Salesforce ecosystem, providing admins with unparalleled capabilities to streamline and automate business processes.

The Complete Guide to Salesforce Flow | Salesforce Ben (2024)
Top Articles
Latest Posts
Article information

Author: Jeremiah Abshire

Last Updated:

Views: 5973

Rating: 4.3 / 5 (54 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Jeremiah Abshire

Birthday: 1993-09-14

Address: Apt. 425 92748 Jannie Centers, Port Nikitaville, VT 82110

Phone: +8096210939894

Job: Lead Healthcare Manager

Hobby: Watching movies, Watching movies, Knapping, LARPing, Coffee roasting, Lacemaking, Gaming

Introduction: My name is Jeremiah Abshire, I am a outstanding, kind, clever, hilarious, curious, hilarious, outstanding person who loves writing and wants to share my knowledge and understanding with you.