Application Development 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: 

how to identify which record(s) the user hasbeen checked

Former Member
0 Kudos

i have a internal table in which first field is represented as check box in the output .

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.

5 REPLIES 5

rainer_hbenthal
Active Contributor
0 Kudos

HWat kind of dosplay is that? OOPS ALV? Or Reuse ALV?

Former Member
0 Kudos

Is it a simple ABAP list or and ALV?

IN case of ABAP list you can use READ list command.

Let me know if u need further info.

-Rajat

0 Kudos

its normal report not alv

Former Member
0 Kudos

Hi,

You will have to use the 'READ LINE' command within a loop to retrieve the data back into your program.

You may want to use the HIDE command to ease the retrieval of the checkbox value.

Check out the online help for both of these.

Darren

Former Member
0 Kudos

This message was moderated.