I have requirement in our Application when ever user click on reopen a- assignment link case should moved back to that assignment.
I achieved that scenario with help of below step-
(1) Create a link - (action tab - set - restart step name) and 2 action- finished assignment.
(2) in flow provide utility shape and run pxReStartStage activity.
(3) Provide when condition in assignment.
above step working fine. Here i am facing issue with when ever i click on link and if any mandatory field are blank than i got client side validation error.
I can’t write function(disable client side validation ) as per our application. Any other way to stop client side validation when we are click on that link. Please let me know if there are any work around.
@Prateek Kumar Mishra You’re getting validation errors because clicking the “reopen assignment” link is using the Finish Assignment action, which tries to submit the form and checks for required fields. Since you’re not allowed to disable client-side validation, a better workaround is to avoid using Finish Assignment directly. Instead, create a local action (like a popup or modal) that asks for confirmation to reopen. From that modal, you can call your restart logic using the pxRestartStage activity without triggering validation. Make sure the local action section doesn’t have any required fields. This way, the reopen logic runs cleanly without being blocked by empty fields on the main screen.
@Sairohith thanks for replying to me but here client don’t want any Pop-up (confirmation section on screen) once we clicked on link it should move direct to that assignment. I go with when condition on required field and refresh complete section on once we click on link which is working fine.