DML operations in Flow include creating, updating, deleting, or getting records from the Salesforce database.
A. Update Records — Issues an UPDATE DML operation.
D. Create Records — Issues an INSERT DML operation.
These elements modify the Salesforce database and are subject to governor limits like the 150 DML per transaction limit.
Incorrect Options:
B. Sort Records is not an element in Salesforce Flow.
C. Share Records is not a standard Flow element; record sharing is typically handled through manual sharing or Apex.
Reference Extracts from Salesforce Process Automation Study Guide:
“Create Records and Update Records are flow elements that trigger DML operations.”
“DML elements are subject to governor limits and should be bulkified when inside loops.”
=========================================================
Submit