‎2006 Aug 08 7:10 AM
Hi all,
how to delete one row from the table control.
Can anyone give me suggestion.
Thanks in advance
Venkat
‎2006 Aug 08 7:24 AM
Hi,
You can assign a variable var for w/SelColumn in the table control attributes.Now loop at the internal table where var='x' and delete the record.
‎2006 Aug 08 7:12 AM
‎2006 Aug 08 7:13 AM
‎2006 Aug 08 7:24 AM
Hi,
You can assign a variable var for w/SelColumn in the table control attributes.Now loop at the internal table where var='x' and delete the record.
‎2006 Aug 08 7:46 AM
Hi,
Define a field sel(1) TYPE c in your internal table you will use for Table Control.
In ur PAI when Delete button is clicked
write this code
LOOP AT itab WHERE sel = 'X'.
DELETE itabINDEX sy-tabix.
ENDLOOP.
Hope this is of some help.
Reward points if helpful.
Regards,
Ismail.