cancel
Showing results for 
Search instead for 
Did you mean: 

Select Options - extended options - remove button check

Former Member
0 Kudos

Hi WebDynpro experts,

It´s possible to remove the button check in Advanced Options(Multiple selection popup) of select option?

Thanks,

Márcio

Edited by: MarcioBr on Feb 27, 2009 7:28 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Yes, you can remove the check button.

Take a look at this [wiki|https://wiki.sdn.sap.com/wiki/x/ZQJXAg] in method BUILD_SELECT_OPTIONS.


* Hide the standard select-options components.
  wd_this->m_helper->set_global_options(
    i_display_btn_cancel = abap_false
    i_display_btn_check  = abap_false
    i_display_btn_reset  = abap_false ).

Regards.

Former Member
0 Kudos

hi,

This method don´t remove button check in advanced options screen (multiple selection popup), only remove the buttons above the field that have the select options.

Thanks,

Márcio

abhimanyu_lagishetti7
Active Contributor
0 Kudos

use parameter I_NO_INTERVALS, I_NO_EXTENSION

LR_HELPER->ADD_SELECTION_FIELD( I_ID = 'RRNUM'

I_DESCRIPTION = 'Rebate Request'

I_NO_INTERVALS = ABAP_TRUE

I_NO_EXTENSION = ABAP_TRUE

IT_RESULT = WD_THIS->LT_RRNUM ).

Abhi

Former Member
0 Kudos

Hi,

I want to maintain the extension options. but removing the button chek in advanced options screen (multiple selection popup).

Thanks