‎2013 Feb 05 3:40 PM
hello all,
I'm new to ABAP field
In my company I have to debug a standard program but it contains lot of screen programing
Can any one tell me some techniques to debug the standard code in particular screen programming
Please this would help me a lot
Thanks in advance
Moderator message : Not enough re-search before posting, discussion locked.
Message was edited by: Vinod Kumar
‎2013 Feb 05 4:02 PM
Hi,
Some techniques used in debugging -
- Define break-points at statements you want the execution to pause so that you can analyse the status till the point of execution.
- Define watch-points for variables to keep a watch on their changing values. You can also define watch-points to keep a watch on a variable for some specific value too not just any value.
- Use Step, Step into, Step Over, Execute functions according to your need.
Step ( F5 ) - To execute program line by line.
Step into ( F6) - To get inside the execution of a loop, function or method call etc.
Step Over (F7) - Execute a statement like loop , function calls etc like a single statement and dont get inside the internal processing.
Execute (F8) - Execute the program until next break point or watch point is met.
Thank You.
‎2013 Feb 05 4:05 PM