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

ABAP Debugger

Former Member
0 Likes
1,391

Hi,

Any one knows how to skip a line in debugging mode. If it is possible then how to skip multiple lines.....

Thanks in Advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,328

hi

in the debugging mode,

click the line (i mean put the cursor by single click) which you want to skip to.

(click) on the menu Debugger-->Go to Statement.

the lines in between can be skipped without processing.

hope this helps

thx

pavan

8 REPLIES 8
Read only

Former Member
0 Likes
1,328

Hi Usman,

Unfortunately you can't.

Regards,

John.

Read only

Former Member
0 Likes
1,328

Hi,

When you find the <b>Perform</b> Statements then if you say F6 you will skip that complete code.

So you observe that in code while debugging and can skip.

Regards,

Anji

Read only

Former Member
0 Likes
1,328

If you mean by skipping lines that the system doesnt process it then I am sorry it is not possible you have to go back to the code and comment the particolar lines.

in case you just fant to save time and dont want to see the detailed processing then either press F6 for

performs

FMs

...etc

or just scroll down the debugging page by the down arrow button and set a Breakpoint where you want to land up directly,press F8 and you are there on the Breakpoint but in this case system still processes the whole code it is just you dont see it processing line by line.

I hope it is clear.

Thanks

Read only

0 Likes
1,328

Hi,

In debugging,

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
1,329

hi

in the debugging mode,

click the line (i mean put the cursor by single click) which you want to skip to.

(click) on the menu Debugger-->Go to Statement.

the lines in between can be skipped without processing.

hope this helps

thx

pavan

Read only

Former Member
0 Likes
1,328

While debugging, put the cursor on the line which you want to execute and then in menu bar Debugging->Goto Statement, your cursor will be on that line and the middle lines will be skipped.

I hope it helps.

Best Regards,

Vibha

<b>*Please mark all the helpful answers</b>

Read only

Former Member
0 Likes
1,328

Thanks Pavan,

Got the Solution.... Thank you so much....it's working

Read only

Former Member
0 Likes
1,328

you have lines 1 to 10.

suppose you don't want debug the lines from 3 to 6.

Then you can do the following to skip the line from debugging.

Double click on the line 2.

Double click on the line 7.(not on the individual variables)

Now suppose your debugging cursor is at line one.

When you came to line 2 then you can press F8.

Then the cursor will directly goes to the line 7.

This should be done manually only.

Regards,

Balakrishna.