‎2007 Dec 26 4:19 AM
i wish to delete multiple rows from table control.can anyone help me...
‎2007 Dec 26 4:26 AM
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.
‎2007 Dec 26 4:26 AM
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.
‎2007 Dec 26 4:34 AM
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>