Application Development 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: 

how to delete multiple row from table control

Former Member
0 Kudos

i wish to delete multiple rows from table control.can anyone help me...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

use the delete command by using index positions we can delete the multiple records in table control.

these all should be write at the loop statement.

please reward points,if it is useful.

regards,

satish.

2 REPLIES 2

Former Member
0 Kudos

Hi,

use the delete command by using index positions we can delete the multiple records in table control.

these all should be write at the loop statement.

please reward points,if it is useful.

regards,

satish.

Former Member
0 Kudos

Hi,

Using ME41 create a button above the table control with 'DELETE' icon.

In the screen layout allow multiple row selections in the table control.

In the PAI of the screen.

loop at tablecontraol where <sel-column> NE 'X'.

...move the contents to a separate internbal table<itab> (structure same as tablecontrol).

endloop.

In the PBO.

repopulate the tablecontraol with contents from the <itab>