Command Reference 5-51
JUMP
Purpose JUMP transfers control to another location.
Syntax JUMP

label

Process The JUMP command unconditionally transfers control to the specified label. If the
script is re-entered, control passes to the script's first line.
Rule: You cannot jump out of a function.

Example

This example transfers control to the label *REQUEST_SKU.
JUMP *REQUEST_SKU
See Also CALL