CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
EXPORTING
i_title = 'SELECT FIELDS'
i_selection = 'X'
i_checkbox_fieldname = 'CHECKBOX'
i_tabname = 'IT_DISPLAY'
i_structure_name = 'TY_DISPLAY'
IMPORTING
es_selfield = i_selfield
e_exit = w_exit
TABLES
t_outtab = iT_DISPLAY
EXCEPTIONS
program_error = 1
OTHERS = 2
.
IF sy-subrc <> 0.
MESSAGE i011.
ENDIF.
but its just not diplaying anything.
my internal table contains two fileds:text and checkbox...
it has been populated by data(fields in fieldcatalog which i have to selct and display in alv grid)....
can anyone tell me 's the problem...
why pop-up-is empty...????