cancel
Showing results for 
Search instead for 
Did you mean: 

What is correct way of suppressing the lead selection in ALV table

Former Member
0 Kudos

Hi Webdyn Gurus,

I want to suppress the lead selection while using the SALV_WD_TABLE. And iam using it as interface component.

How to suppress the lead selection in this ALV so that it does not lead any custom coding .

And my application should be able to display this ALV with out the lead selection.

Most of the webdynpro examples displays lead selection while calling.Any ideas and valuable suggestions.

Thanks in advance.

Srinivas.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Use the following method within the interface if_salv_wd_table_settings.


if_salv_wd_table_settings->set_selection_mode 

You can pass either 07 or 08 based on your requirement and you won't get any lead selection on display.

Constant Value Selection Mode

AUTO '00' Automatic

SINGLE '02' Single selection with lead selection

MULTI '04' Multiple selection with lead selection

NONE '06' No selection

SINGLENOLEAD '07' Single selection without lead selection

MULTINOLEAD '08' Multiple selection without lead selection