‎2007 Feb 23 5:46 AM
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
‎2007 Feb 23 5:47 AM
Hi,
Create a watchpoint for that particular record.
Hope this helps.
Reward if helpful.
Regards,
Sipra
‎2007 Feb 23 5:48 AM
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
‎2007 Feb 23 5:49 AM
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
‎2007 Feb 23 5:49 AM
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
‎2007 Feb 23 5:49 AM
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--
‎2007 Feb 23 5:50 AM
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.