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

Regarding ABAP program debugging ?

Former Member
0 Likes
830

HI @,

I need to debug an ABAP program ,I dont know how to use debugger and other tools provided by SAP

I need some link or docs for the same urgently

Regards

1 ACCEPTED SOLUTION
8 REPLIES 8
Read only

Former Member
0 Likes
803

Hi

Please have a look at this link.

Regards

Avi...

Read only

Former Member
0 Likes
803

hi

good

there are besically three process to debug the ABAP program

1-Use \h in the command line to active the debugger and start the porgram using f8 .

2-Use hard coded break-pint to debug the program

3-Use the button in the tool bar to put a break point at a particular position.

yes there are tools provides by SAP to debug the abap program.

1-SLIN

thanks

mrutyun^

Read only

0 Likes
803

1) Put /h in the command field and execute(F8) the program.

2)Put a break-point on any line on ur program(U can see a button in the application toolbar in se80 or se38 ) and execute.

u can also put a Break-point when u r executing the program. that is called Dnamic Break-point.

Read only

0 Likes
803

U need to <b><u>award points for all the useful replies</u></b>, and also u nees to <b><u>mark it as Answered if ur problem is solved</u></b>.

Regards

Sudheer

Read only

Former Member
0 Likes
803

Hi Amith,

We are using the debugging as F5, F6, F7 and F8.

F5 is for single step.

F6 is for skip from perform to perform

F7 is for come out from perform or function module.

F8 for execution.

We can set watch points and break points dynamically.

We can change in the debugging like append, delete, insert lines for internal table.

Hope this helps you. Reply for queries, shall post the updates.

Regards.

Kumar.

Read only

Former Member
0 Likes
803

try F6 for loop execution

F5 line execution

F8 comlpte execution

put break point as required

and u can also use watchpoints