cancel
Showing results for 
Search instead for 
Did you mean: 

Disable / hide ALV scroll bar (Navigation Pane)

Former Member
0 Kudos

Hello,

is there a way to disable or hide the scroll bar in an ALV table? in other words I wanna display all

the data in an ALV table without having to scroll down.

Thanks,

Abdul.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi, you can use the table configuration to control this. set_visible_row_count to -1.

data:
 l_salv_wd_table type ref to iwci_salv_wd_table,
 l_table type ref to cl_salv_wd_config_table.

l_salv_wd_table = wd_this->wd_cpifc_usage_alv( ).
  l_table = l_salv_wd_table->get_model( ).

  l_table->if_salv_wd_table_settings~set_visible_row_count( -1 ).

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks guys.