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 multiple rows in search help

Former Member
0 Likes
4,344

Hi,

Does anyone know if it's possible to select multiple rows in a developed search help, and to return the selected rows to several screen fields ( that use the same search help ) ?

And, if it's possible, what should i do to develop the search help and the dialogue screen, in order to obtain that functionality ?

Thanks,

Paulo Sousa

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,780

Hi,

You can use the function module 'F4IF_INT_TABLE_VALUE_REQUEST' for search help. In the function module you have MULTIPLE_CHOICE = 'X' option that allows selecting multiple entries from the search help.

Hope this helps.

Thanks,

Tooshar Bendale

3 REPLIES 3
Read only

Former Member
0 Likes
2,781

Hi,

You can use the function module 'F4IF_INT_TABLE_VALUE_REQUEST' for search help. In the function module you have MULTIPLE_CHOICE = 'X' option that allows selecting multiple entries from the search help.

Hope this helps.

Thanks,

Tooshar Bendale

Read only

Former Member
0 Likes
2,780

Hi,

    If you want your SH to return more than one field values into the screen means.. you can mention in your SH creation itself.. Mark the checkbox EXPORT for the fields you want to get auto populated..

If you want to get more than one rows means.. where ll you place the values of the second row in screen.. its not possible..

populating more than one field is possible..

check the checkbox in export for the field which u want to get auto populated..

thanks,

Mathan R.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,780

As it is a search help, manage the F4 in POV, and use FM F4IF_FIELD_VALUE_REQUEST (*) and set MULTIPLE_CHOICE = 'X', then loop at returned RETURN_TAB to update your screen fields with DYNP_VALUES_UPDATE.

Most search helps won't need to be adjusted, check it via a small report with a SELECT-OPTIONS with your search-help, multiple selection should be already available.

Regards,

Raymond

(*) Signature similar to F4IF_INT_TABLE_VALUE_REQUEST, but use ddic definition or explicit search help.