Hello Gurus,
I have achieved to have more than one ALV in one screen like the image attached using FM.
CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
EXPORTING
i_callback_program = sy-repid
I_CALLBACK_USER_COMMAND = 'USER_COMMAND'.
CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
EXPORTING
is_layout = layout
it_fieldcat = fieldcat
i_tabname = tabname
it_events = events[]
"it_sort = sort
TABLES
t_outtab = outtab
EXCEPTIONS
program_error = 1
OTHERS = 2.
My question is How Can I do the same using clases, like the program BCALV_GRID_02.
Thanks for your help
Regards.