Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem with debugging

Former Member
0 Likes
498

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

2 REPLIES 2
Read only

Former Member
0 Likes
467

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.

Read only

tiagocorreia1
Explorer
0 Likes
467