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
639

i am debugging a program where it retreives data from a table.how can directly go to the required record in debugging instead of going one by one.plz suggest

6 REPLIES 6
Read only

Former Member
0 Likes
621

Hi,

Create a watchpoint for that particular record.

Hope this helps.

Reward if helpful.

Regards,

Sipra

Read only

Former Member
0 Likes
621

HI,

If you are using any If conditions in your Program where you think your record will be fetched then put a Break point there. Else use Watch point.

Thanks,

Prashanth

Read only

Former Member
0 Likes
621

Hi,

You need to create a Watchpoint for this one.

Click the Watchpoint pushbutton in the debuging mode, then give the Tablename_field name = value, then it will stop if the tabel-field value will equals to that value

http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/792442db42e22ce10000000a1550b0/content.htm

Regards

Sudheer

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
621

HI,

You can either use a WATCH POINT or you if you know what record to look for then may be you can assign that record to a filed-symbol using READ ASSIGNINIG.

Regards,

Sesh

Read only

Former Member
0 Likes
621

hi prashanth,

Good Day..

u just try to set that breakpoint at concerned statement so that u can get it.

& if it is a FM set BPNT at sunction module..if it is a subroutine set at subroutne u can find the same in BReakpoint Statement..check it out once again...

bye--

Read only

Former Member
0 Likes
621

Hi,

If u press F5 u will go one by one line.

When u r inside teh loop and if u would like to come out press <b>F7</b> so taht it will <b>skip teh loop</b>.

Also if u r inside a <b>FORM then also press F7 to come out</b>.

To skip a <b>perform written or CALL FUNCTIOn press F6 it</b> wont go inside the statements.

Hope this is clear.

Also u cna keep break points using the <b>RED color button</b> in the program where ever needed. SO taht u can press F8 directly to reach taht place.

This will save time.

Reward if this helps.