Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Alv Button functionality

Former Member
0 Likes
264

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.

1 REPLY 1
Read only

Former Member
0 Likes
244

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.