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

How to delete multiple records

Former Member
0 Likes
694

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.

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
600

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.

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
601

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

Read only

0 Likes
600

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.

Read only

shishupalreddy
Active Contributor
600

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