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

Dynamic search help based on the input

Former Member
0 Likes
480

Hi All,

I have a requirement like this. There is a select-option without ranges for manufacturer in which we generally enter a search pattern.In this field if the user enters a search pattern and clicks f8 then automatically an f4 help popup should be displayed.Could anyone of you please tell me how to do this?

Regards,

Aruna

3 REPLIES 3
Read only

Former Member
0 Likes
460

Hello,

You can code the search help logic in SY-COMM of F8 with required FMs and custom logic.

Regards,

Sunil

Read only

Former Member
0 Likes
460
AT SELECTION-SCREEN.

IF SY-UCOMM = 'ONLI'.
F4IF_INT_TABLE_VALUE_REQUEST       " Function Module.
ENDIF.

Reagrds,

Gurpreet

Read only

Former Member
0 Likes
460

I am not sure this will work, for module pool or report F4 is triggered by events. So I have a doubt this will happen when u choose F8.

Instead you can call a screen with the possible values based on ur logic (start of selection), based on the user action display the result in secondary list. This may solve ur requirement.