Halt Script Step for Multiple Users

SCENARIO: Two users are logged in, each executing separate scrips. “User A” executes a script that includes a “halt script” step.

QUESTION: Does FMP halt the scrips for both “User A” and “User B”?

I looked at the FMP documentation and searched the Soup but did not find an answer to this question.

Even if both users were running exactly the same script, the Halt Script step will only affect the user running that script.

User A runs the script. At the same time, user B runs the script. The script is now running in parallel, once for user A and once for user B. The script running for user A hits the Halt script step and halts all the scripts in the current stack for user A. Then the script running for user B hits the Halt script step and halts all the scripts in the current stack for user B.

2 Likes

Thanks