Implementing my first few screen flows, but running into a problem with the Decision component. If I start as screen flow on a Contact or Account, I want to relate a series of tasks or steps associated with that Contact/Household. I am able to do that, but then I want to add Decisions were the tasks are 'triggered' by the completion of the prior task. There is no $Record, so how can I create a mechanism were tasks are only triggered AFTER a prior task is completed?
Is this some complex formula that I need to add with True/False? Can it be done? I've tried to capture the TaskIds (which I can, and in fact, can display in a screen component). And I've double checked the ID's in debug. Can I not use these ID's in a Decision?
TaskID=Specific Task ID
Task Completed = True
Thanks! #Screen Flow #Flow #Flow Builder
Greg - Can you try this?
- Create a new text variable and store your created taskId in this text variable
- then use a getRecords element and lookup the task just created where ID = your text variable from bullet #1. Choose automatically store all fields
- You should now have your task record stored with access to all of its fields available for use later in your flow