Contents
How do I create an Invocable process in Salesforce?
You can create an invocable process that updates a Case record….Do the same if you create processes to replace any Apex triggers.
- Enter a name for this action.
- Select an invocable process.
- Select your process variable.
What is an Invocable process in Salesforce?
With Invocable Process Builder Processes you can create a process for actions that will be repeated across a Process or multiple processes. This is a great tool to make your automation even more efficient and maintainable!
Where can I find global apex invocable actions?
These invocable actions can still be referred to by flows within the same managed package. Global Apex invocable actions in a managed package can be used in flows outside the managed package, anywhere in the organization, and appear in Flow Builder’s list of available Apex actions. Supply input values that correspond to the Apex action.
Is there an invocablemethod annotation for APEX methods?
Apex methods annotated with @InvocableMethod must take a List as an input and return a List or Null. For more information, see @InvocableMethod Annotation in the Apex Developer Guide. A specific sObject type– the generic sObject type is not supported.
Where do I find invocable action in flow builder?
An Apex invocable action can be declared public or global in a managed package. However, that action doesn’t appear in Flow Builder’s list of available Apex actions. These invocable actions can still be referred to by flows within the same managed package.
What happens when I add an apex action to a flow?
Describe and invoke for an Apex action respect the profile access for the Apex class. If you don’t have access, an error is issued. If you add an Apex action to a flow, and then remove the @InvocableMethod annotation from the Apex class, you get a runtime error in the flow.