2006 Oct 12 9:04 AM
Hi,
How to delete the multiple records in the debugging mode? I already asked this and got many answers.But it was not useful.
Thanks,
Govindarajan Umadevi.
2006 Oct 12 9:27 AM
hi,
include this in your program:
data: delx, idx1, idx1.
if delx = 'X'.
DELETE itab FROM idx1 TO idx2.
endif.set a break-point at if-statement and modify all
values:
-delx = 'X'.
e.g.
-idx1 = 10.
-idx2 = 1000.
you can include this in a form-routine
A.
pls reward useful answers
thank you!
Message was edited by: Andreas Mann
Hi,
How to delete the multiple records in the debugging mode? I already asked this and got many answers.But it was not useful.
Thanks,
Govindarajan Umadevi.
2006 Oct 12 9:27 AM
hi,
include this in your program:
data: delx, idx1, idx1.
if delx = 'X'.
DELETE itab FROM idx1 TO idx2.
endif.set a break-point at if-statement and modify all
values:
-delx = 'X'.
e.g.
-idx1 = 10.
-idx2 = 1000.
you can include this in a form-routine
A.
pls reward useful answers
thank you!
Message was edited by: Andreas Mann
2006 Oct 12 9:40 AM
Hi Andreas Mann,
Your answer is useful but without having that additional extra code in the program is ther any facility in the debugging to do the same.
2006 Oct 12 10:01 AM
Hi,
without tht extra code we cannt delete multiple records from itab in debuggingm ode
You have go wih deleting one by one from itabin debuggingmode