Hi,
How to use FM "REUSE_ALV_HIERSEQ_LIST_DISPLAY" with dynamic internal table...?
CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
EXPORTING
i_callback_program = sy-repid
is_layout = alv_layout
it_fieldcat = gt_final_fieldcat
i_tabname_header = 'GT_HEAD1_FIELD'
i_tabname_item = <gfs_dyn_table>.
is_keyinfo = key
TABLES
t_outtab_header = gt_head1_field
t_outtab_item = <gfs_dyn_table>.
I have used dynamic table <gfs_dyn_table> but when i passed to i_tabname_item it gives dump.
Pls help.