I have a process in 3.0.1 community where users are filling out forms with input documents that are then routed to an unassigned inbox for supervisors. While the cases are active, the supervisors have access to see each other's cases. However, when the case is completed it is only accessible to the supervisor that completed the case.
I need to know if there's a way to keep the case visible after completion without using the advanced search option.
I tried passing the case to the other supervisor before the case completes, but it didn't work.
$username = 'admin';
$query_user = executeQuery("SELECT FROM USERS where USR_USERNAME='$username'");
$user_uid = $query_user[1]['USR_UID'];
@@SYS_NEXT_USER_TO_BE_ASSIGNED = $user_uid;
I also tried running a parallel process and having it automatically close, but it creates a mess with the case numbers. The user also has to go in and open the case just to close it.
Please let me know if you have any suggestions or ideas where to look for a solution.