Salesforce Flow Limit
Last updated
Was this helpful?
Last updated
Was this helpful?
Interview: An interview is a running instance of a flow.
Transaction
What are SOQL and DML?
SOQL (Salesforce Object Query Language) and DML (Data Manipulation Language) are two languages that handle different operations inside a flow.
SOQL: It is a specific type of computer language that we can use to communicate with the system to retrieve a specific set of data. It is like saying “give me all accounts that John owned” but using the language the system understands. Each request is called a query.
DML: Like SOQL, It is a specific type of computer language to modify a particular data set, like saying “change all John account rating into Hot”. Each request is called a statement.
You can ask the system to retrieve specific data sets 100 times in one transaction.
Limit 50,000.
Limit 150
Limit 10,000
Limit 10,000 milliseconds
CPU time is the time the servers use to process your flow solution.
Limit 12
Duplicate update means you update the “same record” in one batch and can only do that less than 12 times per record.