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
Stacey HusseyStacey Hussey 

Finish location of flow with apex class in new window

I have a flow launching from a footer component, and the below code is resulting in the flow finishing and opening the new task record in the footer component. I am looking for the New Task Record to open in a new tab though in the screen. I think I am missing one tiny bit of code to make this happen. Can anyone help??

public class TaskFlowController {
    
    public Flow.Interview.New_Guest_Log theFlow {get; set;}
        
    public PageReference getNewTaskRecord(){
        if(theFlow == null)
            return null;
        else
            return new PageReference('/' + theFlow.varTaskId);
            }
   
}


<apex:page Controller="TaskFlowController">
 <flow:interview name="New_Guest_Log" interview="{!theflow}" finishlocation="{!NewTaskRecord}" buttonLocation="top">
</flow:interview>
</apex:page>


 
Stacey HusseyStacey Hussey
Still looking for help on the above issue if anyone can help I would GREATLY appreciate it!