Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

alv - secondary list with multiple inputs from basic list

Former Member
0 Likes
348

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

2 REPLIES 2
Read only

Former Member
0 Likes
311

Hi,

try this logic...

loop at itab1.

if chkbox = 'X'.

move fields to itab2.

select single fields where itab1-field.

abppend itab2.

endloop.

Read only

Former Member
0 Likes
311