You need to sign in to do that
Don't have an account?
Anna Rudenko 9
Flow - redirect finish button to recently created record in Edit Mode
Hello,
my flow (launched from a Button) creates a Case Record from Opportunity and after a Custom Object connected to the case.
I managed in the last Screen element to redirect users in the Edit mode of created in the previous step record:
However when the user is Saving the record (or pressing Cancel), SF redirects him to SF Home page screen and not to the created record. I am not sure why the button behavior is changed as the further edit and save of the record is done outside of the Flow..
Please could anyone suggest how can I redirect to the created record itself once the user presses Save?
Another possible solution would be to set RetUrl of the button, so that when the user is pressing "Finish" in the Flow, he will be redirected to the edit mode of custom created record.
Here what I have in the button, but still being redirected to Home Page:
Maybe because when starting the Flow, the value of varSEQualificationFormId does not exist?..
Thanks for any input!
Anna
my flow (launched from a Button) creates a Case Record from Opportunity and after a Custom Object connected to the case.
I managed in the last Screen element to redirect users in the Edit mode of created in the previous step record:
However when the user is Saving the record (or pressing Cancel), SF redirects him to SF Home page screen and not to the created record. I am not sure why the button behavior is changed as the further edit and save of the record is done outside of the Flow..
Please could anyone suggest how can I redirect to the created record itself once the user presses Save?
Another possible solution would be to set RetUrl of the button, so that when the user is pressing "Finish" in the Flow, he will be redirected to the edit mode of custom created record.
Here what I have in the button, but still being redirected to Home Page:
/flow/Create_New_Case_from_Opportunity?varOpportunityId={!Opportunity.Id}&varSEQualificationFormId={!SE_Qualification_Form__c.Id}&retURL=/{!SE_Qualification_Form__c.Id}
Maybe because when starting the Flow, the value of varSEQualificationFormId does not exist?..
Thanks for any input!
Anna
1. Create a link to the newly created record on the last screen and force user to click on it instead of Finish button. You can hide the Finish button.
2. Set the newly created record id to a variable and use the same variable in retURL in your button.
https://cs54.salesforce.com/{!varSEQualificationFormId}/e?retURL=%2F{!varSEQualificationFormId}