‎2007 Feb 22 2:36 PM
Hi ,
i have a requirment for functionality of button on the alv grid . Am using
FM : 'REUSE_ALV_GRID_DISPLAY' not objects. I created an icon on the application tool bar on the grid.
when user selects a colum of a grid and clicks on this button say 'DISPLAY' it should pop up a selection box with check boxes and text for the check boxes. if the user checks on check box it should input values to the respective columns.
Can you please give a sample code for the above case...
thanks,
vind.
‎2007 Feb 22 3:20 PM
when 'abcd'.
READ TABLE I_FINAL1 INDEX RS-TABINDEX.
CALL FUNCTION 'POPUP_GET_VALUES'
EXPORTING
NO_VALUE_CHECK = ' '
POPUP_TITLE = 'Update Tape Information'
START_COLUMN = '5'
START_ROW = '5'
IMPORTING
RETURNCODE = V_RETCODE
TABLES
FIELDS = I_FIELDS
EXCEPTIONS
ERROR_IN_FIELDS = 1
OTHERS = 2
.
u need to populate i_fields before calling this function module with the fields/checkboxes u need.