Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Select-option multiple selection button is missing

0 Likes
1,213

Hello

I had to change the default search help with the "F4IF_INT_TABLE_VALUE_REQUEST" function module.

But the multiple selection button is now gone.

Am I missing a parameter from the function call? I tried with multiple_choice = 'X' but it didn't work.

My call:

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield   = 'ZZGEST_CONTR'
      value_org  = 'S'
    TABLES
      value_tab  = lt_gest_contr
      return_tab = lt_return.
1 ACCEPTED SOLUTION
Read only

Sandra_Rossi
Active Contributor
1,144

The button "multiple selection" is shown only if there's a value help, but it doesn't work for a full ABAP value help, maybe because the custom ABAP code can't be informed if the value help is called from one field or from the button "multiple selection".

The workaround is to create a custom search help and place your custom ABAP code as a search help exit (you can't use F4IF_INT_TABLE_VALUE_REQUEST inside the exit, you have to rewrite your code differently).

1 REPLY 1
Read only

Sandra_Rossi
Active Contributor
1,145

The button "multiple selection" is shown only if there's a value help, but it doesn't work for a full ABAP value help, maybe because the custom ABAP code can't be informed if the value help is called from one field or from the button "multiple selection".

The workaround is to create a custom search help and place your custom ABAP code as a search help exit (you can't use F4IF_INT_TABLE_VALUE_REQUEST inside the exit, you have to rewrite your code differently).