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

help in debuger

Former Member
0 Likes
1,084

hi,

i wont to debug table but not from the beging i wont from ex.

line 500 how i do that ?

i use the new debugerr

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,057

Hi Ricardo,

If you put break point it will stop there at the particular point of the source code..It will not stop in the break point until another break point or the same break point..

Watch point is non to physically putting break point..Instead you can watch a variable when and where it is getting changed..by creating a watch point on the variable in the program..

Example for watch point

Go to the debug mode..

Press the create watch point button (shift + f8)..

It will give a popup to enter the program name and field name you have to watch..

Press enter..

It will stop when the field name is getting changed..

also look at....

http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cbee68c11d2b2ab080009b43351/frameset.htm

Hope it will solve your problem...

Reward points if useful...

Thanks & Regards

ilesh 24x7

10 REPLIES 10
Read only

Former Member
0 Likes
1,057

hi Ricardo,

keep a break point in the line u need and start debugger press f5 ,f6 till it goes to that line the debugger will stop at that line again u press f5 to continue forward.

Reward if Usefull

thanks,

swaroop

Read only

Former Member
0 Likes
1,057

You can do one thing

write this <Break-point> in your code.

this statement will break your code and will go into bedug mode.

If usefull reward points helpfull...

Read only

Former Member
0 Likes
1,057

Hi ricardo,

At line 500, set the external break-point . i.e., click on the STOP button which is placed in the application bar.

Then execute the report. It starts debugging from line 500

Regards,

Hk.

Read only

Former Member
0 Likes
1,057

Hi ricardo,

Check what is the unique value in the line 500. Start debugging and create WATCHPOINT and put the unique record in that watchpoint and press F8. It will stop when your unique record will be searched.

Mukesh Kumar

Read only

Former Member
0 Likes
1,057

Hi recardo,

Check what is the unique value in the line 500. Start debugging and create watchpoint and put the unique record in that watchpoint and press F8. It will stop when your unique record will be searched

Read only

0 Likes
1,057

hi

thanks but how i create watch point?

Regards

Read only

0 Likes
1,057

go to the abap debugger.. i.e. start the debugging..

select the field tab... there on the top toolbar you'l get a button on WATCHPOINT

there you mention in which report and which field you want to create a watch point..

also you can specify more conditions in the same window...

once breakpoint is set press F8 the control will stop when desired watchpoint has reached

Read only

Former Member
0 Likes
1,057

Set watchpoint as sy-tabix = 500.

Read only

former_member386202
Active Contributor
0 Likes
1,057

Hi,

Set Breakpoint, goto debug mode n in debug mode create watchpoint line eq 500. then press F8 .

Reagrds,

Prashant

Read only

Former Member
0 Likes
1,058

Hi Ricardo,

If you put break point it will stop there at the particular point of the source code..It will not stop in the break point until another break point or the same break point..

Watch point is non to physically putting break point..Instead you can watch a variable when and where it is getting changed..by creating a watch point on the variable in the program..

Example for watch point

Go to the debug mode..

Press the create watch point button (shift + f8)..

It will give a popup to enter the program name and field name you have to watch..

Press enter..

It will stop when the field name is getting changed..

also look at....

http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cbee68c11d2b2ab080009b43351/frameset.htm

Hope it will solve your problem...

Reward points if useful...

Thanks & Regards

ilesh 24x7