‎2008 Dec 26 4:01 AM
Hi,
I have an ALV grid display in my report.
My grid contains multiple rows.
I have to select multiple rows at a time, to perform some operations on the selected rows.
How can it be achieved?
Thanks,
Sandeep.
‎2008 Dec 26 4:03 AM
‎2008 Dec 26 4:15 AM
Hi Avinash,
You mean to say that it is not possible to select multiple rows in an ALV Grid with out CTRL select?
Thanks,
Sandeep.
‎2008 Dec 26 4:22 AM
hi,
As of my knowledge we cannot select muliple witout using CTRL function. OR u need to go for Select All or Deselect All.
‎2008 Dec 26 4:47 AM
Hi ,
you have to use a box fieldname in the report to be able to select multiple lines at a time :
- in your internal table declaration put the first field as 'box_fieldname' of type c1
- then in your work area for layout add, lwa_layout-box_fieldname = 'box_fieldname'
- in the perform for handling user commands, all selected lines will have an "X" in the field name 'box_fieldname'
Thanks and Regards,
Dev.