Skip to Content
0
Dec 21, 2009 at 02:44 PM

Some functions on my ALV application toolbar are not showing

3004 Views

Hello,

I am writing a program to display information using object-oriented ALV (CL_SALV_TABLE). In my program I have a GUI Status that consists of an application toolbar with various function. I am using the code below to generate and display my ALV. However, not all the pushbuttons in my GUI application toolbar are showing up when my ALV is displayed. Can anybody tell me how to resolve this issue? FYI: I am working on ECC 5.0.

Thanks!

Rae Ellen Woytowiez

*

  • ALV

*... Create Instance

TRY.

CALL METHOD cl_salv_table=>factory

IMPORTING

r_salv_table = gr_table

CHANGING

t_table = itab_aufk_orders.

CATCH cx_salv_msg.

ENDTRY.

gr_table->set_screen_status(

pfstatus = 'ZSALV'

report = sy-repid

set_functions = gr_table->c_functions_all ).

gr_functions = gr_table->get_functions( ).

gr_functions->set_all( abap_true ).

gr_display = gr_table->get_display_settings( ).

gr_display->set_list_header( 'Order Ranges / Group Analysis' ).

*... Display Table

gr_table->display( ).

Edited by: Rae Ellen Woytowiez on Dec 21, 2009 3:50 PM