Skip to main content
I have a flow that is launched from a flow screen in a community. At the end of the flow I would like to redirect it to a specific link. All of the redirect options I have seen are coming for code in a button that launches a flow. Is there anyway to do this within flow itself?
3 answers
  1. Feb 18, 2020, 6:56 PM

    The best I've been able to do is present the user with a link that they can click on to take them to a specific URL.

    Alternatively you can set the FinishLocation if you have your Flow running within a VF page, like this:

    <apex:page >

    <flow:interview name="Create_Procurement_Items" finishLocation="/{!$CurrentPage.parameters.ProcIDInput}">

    <apex:param name="ProcIDInput" value="{!$CurrentPage.parameters.ProcIDInput}" />

    </flow:interview>

    ​</apex:page>

0/9000