Table 26.	Menu Items That You Can Click from the Debug Menu
    |  |  | 
    | Check Syntax | Compiles the current script and verifies syntax. | 
    | Start(F5)
 | Starts the Siebel client. It also displays a dialog box that includes startup parameters. | 
    | Break(CTRL+BREAK)
 | Stops the script that is currently running. If Siebel VB or Siebel eScript is not running, then Siebel Tools does nothing. | 
    | End | Stops the Siebel client and returns to the Siebel Script Editor window. | 
    | Restart(SHIFT+F5)
 | Restarts the Siebel client if a break occurs. | 
    | Toggle Breakpoint(F9)
 | Sets or removes a breakpoint on a line of code. | 
    | Clear All Breakpoints(CTRL+SHIFT+F9)
 | Removes all breakpoints from the current script. | 
    | Watch (SHIFT+F9) | Displays script variables and their values. For more information, see Using the Watch Window While it Monitors a Script. | 
    | Calls (CTRL+L) | Contains a list of subroutine and function calls that Siebel Tools runs prior to the current line. If you choose an item in this list, then the interpreter shifts to this item. | 
    | Step Into(F8)
 | Runs the next line of a script. If this line calls a subroutine or procedure, then Siebel Tools runs this subroutine or procedure. | 
    | Step Over(SHIFT+F8)
 | Runs the first line of script that occurs after the current subroutine or procedure. Siebel Tools continues to run this script in the current subroutine or procedure. | 
    | Step To Cursor(CTRL+F8)
 | Runs all lines of code up to the line that includes the cursor. |