How to debug dynamically called program in background?
There might be a problem when you need to debug such a program, because you never know, when your code will be called.Here is the trick: DATA: lv_counter TYPE i. * Call neverending loop in your code WHILE lv_counter = 0. “this will stop, when you change lv_counter “to s/thing else in debugger ...