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
THBrunoTHBruno 

Show variable of subflow on visualforcepage

Hi all,

 

I have a flow call on my visualforce page:

<flow:interview name="FlowA" interview="{!myFlow}"  />        
  

FlowA has some inputfields and at a given moment in time, it calls a subflow (FlowB), which has is own screens & inputfields.


With the input & output parameters, I pass the variables of my subflow (FlowB) to my masterflow (FlowA).

After FlowB has finished, I'm able to show the values of these variables on my visualforce page.

 

How can I access these variables (from FlowB) before the flow has finished and returned to the masterflow?


Is there any way to show values from variables in a subflow on a visualforce page, before I pass it to the masterflow?

 

Thanks!

 

THBrunoTHBruno

I was thinking on something like this {!FlowA.FlowB.Variable}, but this is not working..

THBrunoTHBruno

Anyone? :-)