‎2007 May 24 6:12 AM
Hi,
how do i read more than 1 selected checkboxes from a single column & corresponding single selected checkbox from the next column.
thanks
mohit.
‎2007 May 24 6:40 AM
Hi,
pls go through
if active-tab = fuvctioncode of tab1
loop at screen
if screen name = chkbox
screen - input =0
endif.
endloop.
endif
pls give reward if it helpful
Thanks
Vana
‎2007 May 24 6:49 AM
‎2007 May 24 6:51 AM
Hi
You have to keep all these checkbox fields in a Internal table along with other fields and display them in Output
Now when to wants to read the selected checkboxes with in a column
Loop that ITAB where Checkbox = 'X'.
and read with
DO.
read the line contents from SY_LISEL field and catch the values.
endddo.
endloop.
Reward points if useful
Regards
Anji
‎2007 May 24 7:06 AM