Timeout of the try function
I have a single script that calls many other scripts for reporting processes on equipment and building reports. Sometimes the data coming off the process tools includes errors that JMP cannot handle. So I have wrapped the calls in a Try() function like this:For(ii=1, ii < nitems(BulkScriptsToRun), ii++,
try(
Include( BulkScriptsToRun[ii] );
);
);
Sometimes the included script does not cras...