‎2005 Oct 19 9:27 AM
hi...
i can select one row from table control and display in a list..
the same thing i want to do for multiple lines...
thanks..
‎2005 Oct 19 9:43 AM
hi,
in the table control attributes set selection as multiple
cheers,
sasi
‎2005 Oct 19 9:50 AM
Hi,
In the table control attributes, there is an option to choose the type of the <b>line selection</b> ( none, single, multiply).
Svetlin
‎2005 Oct 19 9:55 AM
use the table control wizard to create a table control on the screen...while going thru the steps, there will be a screen which asks you about the selection column (this is a single character field in your internal table). on this step there is a selection option for single/multiple selection of rows....
to access the selected records, use...
loop at itab where sel eq 'X'.
....
....
endloop.
where
<b>itab</b> is the underlying internal table for table control and <b>sel</b> is the name of the selection column
or if u already have a table control on screen...double click and open the properties window...there u can see radio buttons None, Single and Multiple for line selection. choose the multiple option.
rgds,
PJ
Message was edited by: Priyank Jain