Open and incremental execution
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Open and incremental execution
To execute a procedure other than the one the Debugger is currently running, open the procedure and start it from the Debugger, using . Whenever the Debugger has control, you can run any application, effectively adding it to the procedure call stack of your current application. This allows you to mix and match procedures dynamically or run diagnostic procedures while debugging your application.
When the Debugger is stopped in an executing procedure, you can continue execution, using . This allows the procedure to execute until it encounters a breakpoint, an interrupt, or the end of the procedure. You can also continue executing the current procedure line by line using , or . Use to watch your program execute as the Debugger steps through your code. Use the Run to Line command to continue program execution up to a specified line of ABL code.