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
William Terry 12William Terry 12 

Trailhead Modules 3 Automating Processes with Flow

Trying to save a flow page labeled FlowPage
New Customer Flow is not found or does not have a active version

<apex:page >
  <flow:interview name="New Customer Flow"/>
  </apex:page>
Flow "New Customer Flow" had been created and it does show as being active

 
BalajiRanganathanBalajiRanganathan
You could be using the Lable name instead of flow name.

try with
<flow:interview name="New_Customer_Flow"/>
sfdcdevsfdcdev
Flow Name: New Customer Flow
Unique Name: New_Customer_Flow(Always refer unique name in your Visualforce Pages)

<apex:page >
       <flow:interview name="New_Customer_Flow"/>
 </apex:page>
SANJAY SHRESTHASANJAY SHRESTHA
Please help... Stuck in this for a while
DeshanPillayDeshanPillay
The "New_Customer_Flow" flow needs to be active before it can be referenced using that component.