i have a internal table in which first field is represented as check box in the output .
ITS AN NORMAL REPORT NOT ALV
like bellow
loop at g_it_final into g_wa_final.
write : 5 sy-tabix ,
20 g_wa_final-g_v_check as checkbox,
25 g_wa_final-TRKORR,
40 g_wa_final-AS4TEXT.
endloop.
now the user will select some records from the output checking the check box
NOW the QUESTION is
how to identify which record(s) the user hasbeen checked(selected) ?
so that i can disply only the selected records in the secondary list.