Skip to Main Content

Application Development Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

submitted form immediately redirects in workflow approval

steverarJun 8 2012
I've created a form submission process following this description https://blogs.oracle.com/kyle/entry/adding_ucm_web_forms_to_site_s and associated the submission with a workflow

It works, the form gets into ucm and workflow is triggered. However, the confirmation page, what the "form" redirects to after submission shows right away after clicking on the link in the email approval message.

The service used is SUBMIT_HTML_FORM and the redirect is defined as

var currentElement7 = document.createElement("input");
currentElement7.setAttribute("type", "hidden");
currentElement7.setAttribute("name", "RedirectUrl");
currentElement7.setAttribute("value", "<!--$ssNodeLink(ConfirmationPage)--><!--$AdditionalConfirmParameters-->");
aForm.appendChild(currentElement7);

Any ideas on how to prevent the redirect when the form shows for workflow approval ?

Thanks ...
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 6 2012
Added on Jun 8 2012
0 comments
69 views