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

PUSH BUTTON IN FIELD CATALOG - NEED HELP

Former Member
0 Likes
1,891

Hi all,

I have a requirement wherein i need to have a push button in the first column of ALV GRID DISPLAY output to be able to select multiple rows. Now am using SELKZ field in field catalog, though it creats a first column, the push button is not available. Is there any field in FIELD CATALOG other than this field which will satisfy my requirement or any other possible way to achieve this functionality.

PERFORM alv_fieldcat USING :

't_output' 'SELKZ' ' ' ' ',

In form, i've written the following piece of code.

l_fieldcat-tabname = tabname.

l_fieldcat-fieldname = fieldname.

l_fieldcat-reptext_ddic = coltext.

l_fieldcat-hotspot = hotspot.

Any input in this regard will be valuable to me and highly appreciated.

Thanks in advance,

Vaishnavi Varadarajan

Hi all,

I have a requirement wherein i need to have a push button in the first column of ALV GRID DISPLAY output to be able to select multiple rows. Now am using SELKZ field in field catalog, though it creats a first column, the push button is not available. Is there any field in FIELD CATALOG other than this field which will satisfy my requirement or any other possible way to achieve this functionality.

PERFORM alv_fieldcat USING :

't_output' 'SELKZ' ' ' ' ',

In form, i've written the following piece of code.

l_fieldcat-tabname = tabname.

l_fieldcat-fieldname = fieldname.

l_fieldcat-reptext_ddic = coltext.

l_fieldcat-hotspot = hotspot.

Any input in this regard will be valuable to me and highly appreciated.

Thanks in advance,

Vaishnavi Varadarajan

2 REPLIES 2
Read only

former_member125661
Contributor
0 Likes
820

This is done at the layout level and not the field catalog level.

Put :

gs_layout-sel_mode = 'X'. when you build the layout.

Read only

Former Member
0 Likes
820

hi here is an example ..

regards,

venkat.