Automation - Flow Builder Flashcards

(17 cards)

1
Q

What are the 5 main flow types?

A
  • Screen flow
  • Record-triggered flow
  • Scheduled flow
  • Autolaunched flow
  • Platform event flow
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the most common flow type?

A

Record-Triggered flow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

For the screen flow type of flow, what is the trigger and use cases?

A

Trigger: User launches
Use cases: Guided wizards, collect input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For the record-triggered type of flow, what is the trigger and use cases?

A

Trigger: record created/Updated/Deleted
Use cases: Auto-update fields, create records

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

For the scheduled flow type of flow, what is the trigger and use cases?

A

Trigger: time-based schedule
Use cases: Nightly cleanup, weekly reminders

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

For the autolaunched flow type of flow, what is the trigger and use cases?

A

Trigger: called by other automation
Use cases: Reusable logic, subflows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

For the Platform event flow type of flow, what is the trigger and use cases?

A

Trigger: Platform event
Use cases: real-time integrations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

For record-triggered flows, what are the two timing options?

A
  • Fast field updates (before save)
  • Action and related records (after save)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which type of update should be used for simple field updates on same record only?

A

Fast field updates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are fast field updates (record-triggered flow timing)?

A
  • Run BEFORE record saved to database
  • Can update triggering record’s fields
  • Cannot create/update other records
  • Cannot send emails
  • Fastest performance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are actions and related records (record-triggered flow timing)?

A
  • Runs AFTER record saved to database
  • Can update triggering record
  • Can create/update other records
  • Can send emails, post to Chatter
  • Most common choice
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are 4 types of flow elements?

A
  • Logic elements
  • Data elements
  • Action elements
  • Interaction elements
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the purpose of bulkification?

A

Handle multiple records efficiently (avoid governor limits)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are govern limits?

A

You can only make a limited number of queries and DML (Create/Update/Delete) operations per transaction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are DML operations?

A

Create, Update, Delete operations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is bulkification?

A

Designing flows to process multiple records in a single operation rather than one at a time

17
Q

Whats the important thing to remember about bulkification?

A

Never put Get Records or Create/Update/Delete inside a loop