‎2008 May 29 7:32 AM
Hi All,
I am debugging a loop of an internal table.
The internal table is having 4000 entris. Now i would like to debug 3450th line of that internal table.
I am using ECC 6.0 version and unable to set the watchpoint to debug that particular line.
Can anyone help me out how exactly to set the watch point and to debug that line?
Please help me out......
Regards
Pavan
‎2008 May 29 7:34 AM
set watch point either on wa_line-fieldx (hopefully this is unique) else watch point on SY_TABIX = 3450.
‎2008 May 29 7:34 AM
set watch point either on wa_line-fieldx (hopefully this is unique) else watch point on SY_TABIX = 3450.
‎2008 May 29 7:37 AM
hi,
you put a watch-point on system field sy-tabix.As the loop on internal table takes place sy-tabix contains the number of the record which it is processing.Put a watch-point on sy-tabix .
regards,
Veeresh
‎2008 May 29 7:39 AM
hi
in ecc 6.0 go to the debugging screen
then clik on watc points in the toll bar
then one popup screen will appear
give the variable name where to give the watch points
for ex...
itabb-lifnr = '3000'.
then press enter.
now watch point is created.
rewards if helpful
sachhidananda
‎2008 Jun 11 7:47 AM