Is it possible to create dynamic internal table with keys ? I am working with
call method cl_alv_table_create=>create_dynamic_table
exporting
it_fieldcatalog = lt_fldcat[]
importing
ep_table = lr_new_table
this gives the result without keys so I am not able to perform
read table <ft_itab> from <fs_itab> ....
where "fs_itab" should be line of "ft_itab" with keys (specified in lt_fieldcat[]). Using method above is TABLE_LINE also a table key.