function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Tolga SunarTolga Sunar 

Parameters passed from process after wait element

Hello,

I want to know something about Visual workflows:

Say, I have a process that triggers when A field value changes from X to Y. This process launches a flow that starts with a wait element for 3 absolute days. After 3 days have passed, I want the flow to look at B field value when wait event is over; if it has a certain value, then do a record update.

I would like to know if it is possible. I am going to pass the B field's value from process to flow, but what will be the B field's value during the decision phase after wait event is over; will it be the value at process trigger event, or the value after 3 days following the trigger (when the wait event is over)?

I know I can test it myself, but I am quite limited by means of time. Also, please do not advise me using process builder's scheduled action instead, I am aware of that as well.

Thanks in advance.
Best Answer chosen by Tolga Sunar
Tolga SunarTolga Sunar
Hello,

I have just figured how to call the value during event ending; just simply put a record lookup after the wait element in flow and fetch the current value ...