‎2006 Dec 04 2:26 PM
hi,
how can u find the error directly for example i have 10000 records but the error is in 9990th record.before i dont know the exact after checking only it will find.but it will take time by setting break point every where?
‎2006 Dec 04 2:28 PM
Are you talking about BDC using call transaction?
In that case you have to use MODE = 'E' (error mode).
if you are talking debugging in general, you can go for watchpoints.
YOu have to create a watchpoint with a condition that,
sy-tabix = 9990
Regards,
Ravi
‎2006 Dec 04 2:28 PM
Are you talking about BDC using call transaction?
In that case you have to use MODE = 'E' (error mode).
if you are talking debugging in general, you can go for watchpoints.
YOu have to create a watchpoint with a condition that,
sy-tabix = 9990
Regards,
Ravi
‎2006 Dec 04 2:29 PM
u have an option like u can set the watch point fro which ever u require u give the
tab-fieldname and operator like > or < or = and give the value as 9990
and save it
wn u excute like f8 it will directly stops at that 9990th record
‎2006 Dec 04 2:33 PM
Hi Surendra,
If you know the Internal table in which the error is occurring, then when there is LOOP AT <itab>.
....
ENDLOOP..
Statement, create a WATCH POINT, for SY-TABIX EQ 9990, click on Execute (F8) button. When the value of sy-tabix is 9990 or when the loop reaches 9990 entry it stops saying watch point has been reached.
Be careful, in specifying whether it ai local watch point or not and check the number of entries in your internal table.
Please let me know if further details are required.
Regards,
Goutham.