Skip to main content

Combine Variables and Data Elements

Learning Objectives

After completing this unit, you’ll be able to:

  • Use the variables generated by some elements.
  • Retrieve data from Salesforce records to use in your flows.
  • Use record variables in Create Records and Update Records elements.
Note

This badge is one stop along the way to Flow Builder proficiency. From start to finish, the Build Flows with Flow Builder trail guides you through learning all about Flow Builder. Follow this recommended sequence of badges to build strong process automation skills and become a Flow Builder expert.

Variables Generated by Elements

Variables are incredibly useful in flows, but if you had to create a variable for each separate data value in a flow, you’d get tired of making variables pretty quickly! Thankfully, some flow elements create their own variables, so you don’t have to. These variables have labels that match their source element, so you always know where they came from: [Record type] from [API name].

For example, if you have a Get Records element that retrieves a contact record and has an API name of Get_Latest_Contact, that element creates a record variable with Contact from Get_Latest_Contact as the label.

The Flow Builder resource list displays a variable named Contact from Get_Latest_Contact.

Note

You might notice that the variable is visible and accessible throughout the flow, even if the element that creates it is at the end. That’s just a technical necessity of how flows work: All variables must exist from start to finish. The variable doesn’t contain anything until its element runs and retrieves the data.

Let’s look at the Get Records element, how it works, and how it creates that variable for you.

Retrieve Values from a Single Record

To do almost anything in Flow Builder, you need data. Flows can access your Salesforce record data, but you have to tell the flow what data to get. The flow temporarily stores a record’s values so they can be used later in the flow.

To retrieve data from a Salesforce record, use the Get Records element. Check out this video on how the Get Records element works.

When retrieving record values, you can get all the field values from a single record or from a whole collection of records. The flow stores the retrieved values in a single variable.

Let’s look at an example. Pyroclastic, Inc. tracks critical contacts on an opportunity in the related Opportunity Contact Role object. The sales department wants opportunity owners to reach out to the contact with the Decision Maker role when an opportunity is lost. Flo asks you to create a flow that generates a task when a high-value opportunity is lost. The Decision Maker is stored not on the opportunity, but on a different object: Opportunity Contact Role. You need the flow to retrieve the Decision Maker from the opportunity contact role before creating the task.

Let’s outline the flow before you start to build it.

First, the flow runs when an opportunity is lost with an Amount over 100,000. (You do this with a record-triggered flow that runs when an opportunity is updated, and a condition requirement: StageName = Closed Lost.)

Second, the flow retrieves opportunity contact role records whose Role is Decision Maker. (You do this with a Get Records element for the Opportunity Contact Role object. In the Get Records element, you define two filters: (1) the opportunity contact role’s Opportunity = the triggering opportunity’s ID; and (2) the Role on the opportunity contact role = Decision Maker.)

Third, you want to store only the most recent decision maker. (You do this with three settings in the Get Records element: (1) How many records to store: Only the first record; (2) Sort By: CreatedDate; and (3) Sort Order: Descending.)

Finally, the flow creates a task that reminds the opportunity owner to follow up with the decision maker. (You do this with a Create Records element for the Task object. You set field values for the task using the opportunity’s Owner ID, the opportunity’s ID, and the opportunity contact role’s Contact ID.)

Now you’re ready to start building the flow.

  1. Create a record-triggered flow:
    1. Object: Opportunity
    2. Trigger the Flow When: A record is updated
    3. Condition Requirements: All Conditions Are Met (AND)
    4. Condition:
      1. Field: StageName
      2. Operator: Equals
      3. Value: Closed Lost
    5. Click +Add Condition:
      1. Field: Amount
      2. Operator: Greater Than or Equal 
      3. Value: 100000
    6. When to Run the Flow for Updated Records: Only when a record is updated to meet the condition requirements
    7. Optimize the Flow for: Actions and Related Records
  2. On the flow canvas, on the path after the Start element, hover over Add Element  and click Add Element. Select Get Records.
  3. For Label, enter Get Decision Maker.
    Remember, this name is used to label the generated variable, so it’s a good idea to use a descriptive name.
  4. For Object, select Opportunity Contact Role.
  5. For Condition Requirements, select All Conditions Are Met (AND).

    The New Get Records panel corresponding to steps 3–5
  6. In the Filter Records section, define conditions that tell the element which records to retrieve.

    Field Operator Value
    OpportunityId Equals $Record > Id
    Role Equals Decision Maker
    Note: Filtering records in a flow element allows you to ensure that you’re getting only the records you want. It’s similar to creating multiple conditions and defining custom logic in list views and reports.

    The New Get Records panel corresponding to step 6.Note: If the object you’re querying has a lot of records, avoid retrieving all of its records if possible. You may end up editing closed records that shouldn’t be altered, and you risk hitting execution limits that will cause the flow to fail.
  7. For Sort Order, select Descending.
  8. For Sort By, select CreatedDate.
  9. For How Many Records to Store, select Only the first record.
    When you select Only the first record, the element stores just one record in the output variable.
    When you select All records, it outputs all the records that meet your filter conditions.
  10. For How to Store Record Data, select Automatically store all fields.
    This option is the default, and for good reason. With this option enabled, the element automatically creates a record variable for you and stores the data in it. Don’t worry, even though the whole record is stored in a single variable, you’ll still be able to retrieve individual field values as needed.

    Note: Automatically store all fields is usually your best option, because it reduces your work and simplifies your data into a single variable. Even if you just need to retrieve a single value from a record, you’re unlikely to exceed any flow limits by storing the whole record. On the other hand, if the object has a few hundred custom fields, the increased load can impact performance. In that case, select Choose fields and let Salesforce do the rest to get only the fields you need.

    The New Get Records panel corresponding to steps 7-10.
  11. Save the flow. For Flow Label, enter Create Follow-Up with Decision Maker.

Combining the How Many Records to Store and Sort Settings

In the Get Decision Maker element, you wanted to find one decision maker so you opted to store only the first record. If multiple records match the filter conditions, how do you know which one will be stored? You can use the Sort Order and Sort By settings to dictate which record comes first. You sorted in descending order by creation date so that the flow returns the most recently created Decision Maker role.

Now your flow can get the information it needs to create the reminder task. Next, you add a Create Records element to create that task.

Use the Retrieved Values

After the Get Records element runs, its variable contains that sweet, juicy data! Now your flow’s elements can drink that data for anything they need, like a cold glass of flow-range juice.

Let’s return to our example. The flow retrieves the data for the Decision Maker contact role, but it still needs to create a task. Let’s make a Create Records element. Use the variable created by the Get Records element (Opportunity Contact Role from Get_Decision_Maker) to set the task’s contact (WhoId).

  1. In the Create Follow-Up with Decision Maker flow, add a Create Records element after the Get Decision Maker element:
    1. Label: Create Task
    2. How to Set the Record Fields: Use separate resources, and literal values
    3. Object: Task
  2. Define the field values for the new task record.

    Field Value
    OwnerId $Record > OwnerId
    Priority Normal
    Status Not Started
    Subject Closed Lost Follow-Up
    WhatId $Record > Id
    WhoId Opportunity Contact Role from Get_Decision_Maker > ContactId
  3. Save the flow.

After the flow is activated, when an opportunity is set to Closed Lost, the flow creates a follow-up task on the opportunity and on the most recent contact with the Decision Maker role.

In the next unit, you learn about other elements that communicate with your users.

Resources

Lernen Sie weiter kostenlos!
Registrieren Sie sich für einen Account, um fortzufahren.
Was ist für Sie drin?
  • Holen Sie sich personalisierte Empfehlungen für Ihre Karriereplanung
  • Erproben Sie Ihre Fähigkeiten mithilfe praktischer Aufgaben und Quizze
  • Verfolgen Sie Ihre Fortschritte nach und teilen Sie sie mit Arbeitgebern
  • Nutzen Sie Mentoren und Karrierechancen