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
Tanushree Singh 6Tanushree Singh 6 

Flow not working with a VF page

I have created a Flow which works well in Debug Mode and on Community portals but not on a Vf page. The error message is:
An unhandled fault has occurred in this flow
An unhandled fault has occurred while processing the flow. Please contact your system administrator for more information.

And the VF code is:

<apex:page >
  
         
          <flow:interview name="Eval_Survey"/>
       
     
</apex:page>
Shruti SShruti S
This is probably because your Flow isn't receiving all the Inputs that it needs. Could you please let us know what does this Flow do ? Also how is this Flow invoked in the other places such as the community ?
Tanushree Singh 6Tanushree Singh 6
It's an Evaluation survey of our products. I have added the the flow as a component in the community builder.
Shruti SShruti S
Does this use the new Salesforce Surveys ?
Tanushree Singh 6Tanushree Singh 6
No, it's a normal flow.
I checked and yes I was missing out some of the input fields. After fixing them and re-running, I still get that error.