‎2009 Mar 23 5:08 AM
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
‎2009 Mar 23 5:10 AM
Hello,
You can code the search help logic in SY-COMM of F8 with required FMs and custom logic.
Regards,
Sunil
‎2009 Mar 23 5:17 AM
AT SELECTION-SCREEN.
IF SY-UCOMM = 'ONLI'.
F4IF_INT_TABLE_VALUE_REQUEST " Function Module.
ENDIF.Reagrds,
Gurpreet
‎2009 Mar 23 5:17 AM
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.