App Builder Exam including Flows Flashcards
What is a Screen Flow in Salesforce?
A Screen Flow is used to guide users through a series of screens to collect or display information.
What is an Auto-launched Flow in Salesforce?
An Auto-launched Flow runs in the background without user interaction and can be triggered automatically.
What is a Scheduled Flow in Salesforce?
A Scheduled Flow runs at scheduled intervals without user interaction, useful for performing regular maintenance tasks or updates.
What is a Record-Triggered Flow in Salesforce?
A Record-Triggered Flow executes automatically when a record is created, updated, or deleted.
What is a Platform Event-Triggered Flow in Salesforce?
A Platform Event-Triggered Flow runs when a platform event is received, often used for real-time event handling and integration.
What is an In-Bound Messaging Flow in Salesforce?
An In-Bound Messaging Flow sends messages from Salesforce to external systems in response to specific actions.
What is A Screen Flow is used to guide users through a series of screens to collect or display information.
A Screen Flow in SAlesforce?
What is An Auto-launched Flow runs in the background without user interaction and can be triggered automatically.
An Auto-lAunched Flow in SAlesforce?
What is A Scheduled Flow runs at scheduled intervals without user interaction, useful for performing regular maintenance tasks or updates.
A Scheduled Flow in SAlesforce?
What is A Record-Triggered Flow executes automatically when a record is created, updated, or deleted.
A Record-Triggered Flow in SAlesforce?
What is A Platform Event-Triggered Flow runs when a platform event is received, often used for real-time event handling and integration.
A PlAtform Event-Triggered Flow in SAlesforce?
What is An In-Bound Messaging Flow sends messages from Salesforce to external systems in response to specific actions.
An In-Bound MessAging Flow in SAlesforce?
What Assigns values to variables in the flow?
Elements/Assignment
What Retrieves data from Salesforce objects and makes it available to the flow?
Elements/Get Records
What Creates new records in Salesforce based on flow input?
Elements/Create Records
What Updates existing records in Salesforce?
Elements/Update Records
What Deletes records from Salesforce?
Elements/Delete Records
What Branches the flow into different paths based on conditions?
Elements/Decision
What Iterates over a collection of records and performs actions on each?
Elements/Loop
What Invokes another flow inside the current flow, allowing for reusability?
Elements/Subflow
What Displays a screen to the user, allowing for user input?
Elements/Screen
What Invokes external actions such as sending an email or calling an Apex class?
Elements/Action
What Temporarily pauses the flow execution based on a condition?
Elements/Pause
What Sets the values of flow variables?
Elements/Assignment
What Stores data that can be used throughout the flow?
Resource Types/Variable
What Stores a fixed value that cannot be changed during the flow?
Resource Types/Constant
What Performs calculations or evaluations to produce dynamic values?
Resource Types/Formula
What Stores records retrieved or created within the flow?
Resource Types/Record Variable
What Stores a collection (list) of records?
Resource Types/Collection Variable
What Stores text that can include dynamic values from other resources?
Resource Types/Text Template
What Allows invoking custom Apex code or methods as part of the flow?
Resource Types/Apex Action
What Predefined variables that provide context or information about the flow execution?
Resource Types/Global Variable
What Local variables created within a flow to hold data?
Resource Types/Flow Variable