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

Search help exit

Former Member
0 Likes
696

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
Read only

former_member196299
Active Contributor
0 Likes
547

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

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 REPLY 1
Read only

former_member196299
Active Contributor
0 Likes
548

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