Code: Alles auswählen.
DATA: lt_rows TYPE lvc_t_row,
ls_row TYPE lvc_s_row.
go_grid->get_selected_rows( IMPORTING et_index_rows = lt_rows ).
LOOP AT it_rows INTO ls_row.
READ TABLE mt_data ASSIGNING <lf_data> INDEX ls_row-index.
"Coding einfügen...
ENDLOOP.