Application Development 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: 

New Debugger of ECC 6.0

Former Member
0 Kudos
117

Hi gurus,

while debugging the program if i want to skip a perticular like than how can i do. its quite urgent..

helpful answers will be rewarded.

Thanks in adavance.

Manish Hadiyel.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
98

My question is..

for example

write : 'abc'.

write : ' xyz'.

this two lines comes in sequance if i dont want to execute WRITE : 'ABC' and want to shift my control on write 'xyz' than how can i do it.

8 REPLIES 8

Former Member
0 Kudos
98

hi,

i din get your problem..but you can switch to old debugger i.e. classic debugger..

Former Member
0 Kudos
98

hi for debugging use the keys

f5---->for a single line execution

f6-->for a group of commands execution( if endif ,

form-endform, doenddo, while-endwhile)

f7----> back to a function

f8----> total execution..

regards,

venkat

Former Member
0 Kudos
99

My question is..

for example

write : 'abc'.

write : ' xyz'.

this two lines comes in sequance if i dont want to execute WRITE : 'ABC' and want to shift my control on write 'xyz' than how can i do it.

0 Kudos
98

hi check this..

put a break-point at the write : ' xyz'. or write like this..

write : 'abc'.

break-point .

write : ' xyz'.

regards,

venkat

0 Kudos
98

in new debugger also its same..

just double click on the statement which you want to get executed first ,and press f8..it will come to that statement directly..

and to switch to old debugger ,in menu bar there is first menu option called debugging and in its context menu,there is option switch to classic debugger..

if its urgent and you know old debugger then its better to go in ths way..

0 Kudos
98

hi manish

use break point between write : 'abc'. & write : 'xyz'.

To set a break point :

select the line i.e write : 'abc'. and click on stop button, then execut(F5) then it starts debugging from write : 'xyz'.

after write : 'xyz' also u want to skip the line then do the same thing.

to deslect break-point select the same line & click on stop button.

thank u.

Former Member
0 Kudos
98

Hi Manish,

I dont think we have any option for skipping lines in debugging stage.

The only option that i can think of is to comment the line...:)

thanks,

teja.

Former Member
0 Kudos
98

We cannot skip any lines without executing it, the simplest way is to comment it out.