Activity › Forums › Salesforce® Discussions › How can you embed a Visualflow in a Salesforce Visualforce page?
Tagged: Apex:Page, Force.com Sites, Quick Find Box, Salesforce Visualflow, Salesforce Visualforce, Salesforce Visualforce Page
-
How can you embed a Visualflow in a Salesforce Visualforce page?
Posted by Manpreet on April 26, 2017 at 1:38 PMHow can you embed a Visualflow in a Salesforce Visualforce page?
Parul replied 7 years, 7 months ago 3 Members · 2 Replies -
2 Replies
-
Hi Manpreet
To customize a flow’s look and feel or enhance its functionality, embed it in a Visualforce page. If your org has flows enabled for sites and portals, use the Visualforce page to deliver the flow to your Force.com site, portal, or community.
you can look in to this for better understanding: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_flows_adding.htm
Hope it may help you
- [adinserter block='9']
-
HI
Find the flow’s unique name.
From Setup, enter Flows in the Quick Find box, then select Flows.
Click the name of the flow.
Copy the unique name of the flow.
From Setup, enter Visualforce Pages in the Quick Find box, then select Visualforce Pages.
Define a new Visualforce page, or open an existing one.
Add the <flow:interview> component somewhere between the <apex:page> tags.
Set the name attribute to the unique name of the flow.
For example:</apex:page>
<flow:interview name=”flowuniquename”/>
<apex:page>Click Save.
Restrict which users can access the Visualforce page.
Click Visualforce Pages.
Click Security next to your Visualforce page.
Move all the appropriate profiles from Available Profiles to Enabled Profiles by using the ‘add’ and ‘remove’ buttons.
Click Save.
Add the Visualforce page to your Force.com app by using a custom button, link, or Visualforce tabThanks
Log In to reply.