Tag Archives: Invocable Apex

Smart Ways to Debug Salesforce Flows with Asynchronous Apex methods

Debug Salesforce Flows with Asynchronous Apex is an essential skill for Salesforce admins and developers. While debugging standard Flows is usually straightforward—until asynchronous Apex enters the picture. When you debug Salesforce Flows with Asynchronous Apex (such as Queueable, @future, or Batch classes), execution shifts to the Apex job queue. This blog will guide you through… Read More »

How to call an APEX Class from a Screen-Flow

This blog post will go over how to use a Screen Flow to call an Apex class using a straightforward example. The Screen Flow generated in this example has three variables that we have created. Initially, recordId is configured to be available for both input and output. 1. RecordId Variable The second variable that we… Read More »