‎2009 Aug 06 12:50 PM
Hi All,
I want to select multiple rows in a grid on click of a button, there is no checkbox there are multiple rows which need to be selected like we do on pressing shift key on the keyboard. Please suggest how can this be done.
thanks in advance.
Regards,
Anju
‎2009 Aug 06 1:28 PM
Hi Anju,
You can check this link to solve your problem:
Hope it helps you.
Thanks & Regards,
Sarita Singh Rathour
‎2009 Aug 07 5:21 AM
I do not have a checkbox on my grid. I want to select multiple rows as we do by holding shift key on the keyboard.
Thanks,
Anju
‎2009 Aug 07 5:32 AM
‎2009 Aug 07 5:34 AM
hi,
use the following code
"ITAB is the internal by which you filling the grid
"V_CHK is the check box.
loop at itab where V_CHK = 'X'.
"wite your desired code here.
end loop.
hope this helps
Regards
Ritesh J
‎2009 Aug 07 5:35 AM
Hi,
Define a single char field in your output table as the first field..
and then define the layout as
wa_layout-box_fieldname = 'SEL'.
where SEL is the field name int the output table.
regards,
Archana
‎2009 Aug 07 7:04 AM