cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple Select with F4 Help in WD

thomas_mueller8
Participant
0 Kudos

Hello,

i created a SHLP and assigned to a field in WD. The SHLP is displayed and works fine, besides the fact that a multiple selection is displayed next to the SHLP fields. Why is this? Is there a parameter to avoid it?

In my test report the SHLP is displayed as expected, w/o the multiple selection icons.

Kind regards,

Thomas

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi thomas,

In add_selection_field method you will field different parameters in that you have '

I_NO_EXTENSION and I_NO_INTERVALS set these to abap true. you wont get multiple selection options. you can set diffrent paraments to true or false as per your requirement.

like..

  wd_this->m_sel_opt->add_selection_field(

    i_id           = `ZENG_NUM`

    I_DESCRIPTION  = 'Engine No'

    I_NO_EXTENSION = abap_true

    I_NO_INTERVALS = abap_true

    it_result      = lr_field ).

Cheers,

Kris..