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

debugging

Former Member
0 Likes
924

hi,

can anyone give me complete idea about debugging .

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
891
8 REPLIES 8
Read only

Former Member
0 Likes
892
Read only

Former Member
0 Likes
891

Hi,

Debugging is the process where you will find the program is doing correct or not.

we can debugg the program for confirming that the writen logic is right or not and also we can see the values in the internal table and variables too.this is like F7 in C language, we can see the flow of work done in the program.

All that we have to do is execute the program first and then by giving the Tcode "/h" which will start the debugging mode and then again execute the program then you will be seeing the program in Debugging mode then start debugging, you will findeverything there.

Is this ok for you, if you are satisfied award points.

Thanks and regards

Vipin Das

Read only

Former Member
Read only

Former Member
0 Likes
891

hi,

by debugging we analyse the code step by step .what are the values of variables at that point of time.

regards,

ananth

Read only

Former Member
0 Likes
891

Hi

F5 is used to debug line by line code it will nevigate to each step wheter it is a method call or function it will go in side it.

F6 u will move line by line but does now enter inside any function call

F7 will return u to the upper level

Ex if u are inside any method that is called from any other main method u will move to the main method

Regards

Gaurav

Read only

Former Member
0 Likes
891

Debugger is the tool in ABAP workbench, using which we can execute a program/form step by step. You can find the actual flow of the program at the end of each step. This is a very useful option in ABAP.

For a detailed study, please read:

http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm

Reward points if helpful

Regards