Checklist progress
0/194Learned
Platform Developer
Study Checklist
Checklist progress
0/194Learned
Identify the capabilities of the declarative process automation features.
0/8
Understand how to declare variables, constants, methods, modifiers, Apex interfaces, and the appropriate use cases for each.
0/15
Given a scenario, assess how Apex control flow statements will execute and when to apply different control flow statements.
0/8
Given a scenario, write SOSL, SOQL, and DML statements in Apex, and assess what they will return.
0/18
Given a scenario, follow best practices to write Apex classes and triggers.
0/6
Given a scenario, understand governor limits and their implications on Apex transactions.
0/5
Describe the relationship between Apex transactions, the save order of execution, and the potential for recursion and/or cascading.
0/10
Implement exception handling in Apex, including custom exceptions as needed.
0/7
Given a scenario, use declarative functionality and Apex together to automate business logic.
0/7
Invocable Apex method contracts
Learn this conceptStarting autolaunched Flow from Apex
Learn this conceptRecord-triggered Flow and Apex trigger coordination
Learn this conceptValidation rules combined with Apex triggers
Learn this conceptFormula and roll-up fields with Apex automation
Learn this conceptApproval processes combined with Apex
Learn this conceptPrepare for the Exam
Study Community
Ask questions and get the latest info from other Platform Developer studiers. 593 members and growing.
An invocable Apex method is a static method you mark so a flow can run it as an Apex action. The annotation, the method’s one list-shaped argument and list-shaped (or empty) return, and any @InvocableVariable fields on a custom type are the contract the flow uses to pass data in and out. The running user must also be allowed to use that Apex class, or the flow cannot call the method.