Application Development 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: 

ALV Grid to suppress toolbar?

Former Member
0 Kudos

Hi All,

Thanks for helping me in hiding few buttons in Grid toolbar (set_table_for_table_first_display)..Now I need to hide the whole toolbar..Is there any way of hiding whole toolbar?

Regards

Jaker.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

NO_TOOLBAR = 'X'.

4 REPLIES 4

Former Member
0 Kudos

NO_TOOLBAR = 'X'.

0 Kudos

Can u just give me a example where & how to use it?

Regards

Jaker.

0 Kudos

<b>data : gs_layout TYPE lvc_s_layo.

gs_layout-no_toolbar = 'X'.

</b>

CALL METHOD g_grid->set_table_for_first_display

EXPORTING

i_structure_name = 'JTAB'

<b> is_layout = gs_layout</b>

is_variant = gs_variant

i_save = x_save

  • it_toolbar_excluding = it_exclude

is_print = is_print

CHANGING

it_outtab = jtab[]

it_sort = it_sort

  • it_filter = it_filt

it_fieldcatalog = i_fieldcat.

0 Kudos

Hi Sreekant,

Thanks alot..