Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You have probably referred to something in your script that does not exist. The most common cause of this error is simple typographic errors or even case errors.

These script lines:

     NaVIGATE_TO_JUNCTION("uOS400MainMenu"); 
NAVIGATE_TO_JUNCTIN("uOS400MainMenu");

...

The easiest way to resolve this is to make liberal use of the JavaScript alert function. For example:

     alert("About to navigate");
NaVIGATE_TO_JUNCTION("uOS400MainMenu");
alert("Navigation finished");

Would fairly quickly isolate that the NaVIGATE_TO_JUNCTION() line was the one causing the script failure.