By default the āwaitā command spawns a child process, waits for the process to complete, and provides the process return code back to the BES Client where it can be referenced as āexit code of actionā.
In contrast ārunā, by default, creates a new detached process, does not wait for the process to complete, and continues running the next ActionScript command (or completing the action) while the spawned process may continue running in the background. When using the ārunā method we do not have access to the spawned processā return code (and in fact that process might still be running after the Action completes).
Iād have to check the behavior in your instance, though, as you are overriding the defaults with the āoverrideā command. Iām not certain of the behavior of ārunā with ācompletion=jobā. Iām also not sure I understand from your posting which behavior you are seeing, and what behavior you expect to see.