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
avimeiravimeir 

redirect after save

Hi all,

 

I have a custom object that associates two other objects (room and reservation).

 

When clicking on the Reservation detail page on New association, and then saving the association I find myself on the association page, but I want the user to be redirected back to the reservation detail page where he started.

 

Any idea on how to do this?

 

Thanks

viv5586viv5586

PageReference p = Page.you initial page;
            p.setRedirect(true);
            return p;