Application Development 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: 

Search help exit

Former Member
0 Kudos

I need to attach a search help to a webdynpro screen field. The FM used for calling the search help is F4IF_SELECT_VALUES. But in my case the search help have one search help exit. So for calling the search help with the search help exit what all parameters we need to fill for the above FM.

Thanks in advance

Binoy

1 ACCEPTED SOLUTION

former_member196299
Active Contributor
0 Kudos

hi Bonoy,

you need to provide the search help name and the exit name ...

for ex ,,

CALL FUNCTION 'F4IF_SELECT_VALUES'

EXPORTING

shlp =

CALL_SHLP_EXIT = ' EXIT_NAME of the search help '

  • IMPORTING

  • MAXROWS_EXCEEDED =

  • TABLES

  • RECORD_TAB =

  • RECDESCR_TAB =

  • RETURN_TAB = .

Hope this solves your problem !

Regards,

Ranjita

1 REPLY 1

former_member196299
Active Contributor
0 Kudos

hi Bonoy,

you need to provide the search help name and the exit name ...

for ex ,,

CALL FUNCTION 'F4IF_SELECT_VALUES'

EXPORTING

shlp =

CALL_SHLP_EXIT = ' EXIT_NAME of the search help '

  • IMPORTING

  • MAXROWS_EXCEEDED =

  • TABLES

  • RECORD_TAB =

  • RECDESCR_TAB =

  • RETURN_TAB = .

Hope this solves your problem !

Regards,

Ranjita