‎2008 Jul 17 7:36 AM
hi all
i would like to know or could provide link for the alv where i can select multiple records from basic list and i can use that multiple records in where condition in secondary list i.e. where matnr in itab-matnr.
scenario
first list has checkboxes and the user will click on multiple checkboxes and multiple matnr nos should get into a variable and this variable needs to be used in secondary list
i.e. select ..........where matnr in itab-matnr to get secondary list.
thanx in advance
rocky
‎2008 Jul 17 7:43 AM
Hi,
try this logic...
loop at itab1.
if chkbox = 'X'.
move fields to itab2.
select single fields where itab1-field.
abppend itab2.
endloop.
‎2008 Jul 17 7:53 AM