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
917

Hi all,

anybody have any coding or clear idea about how to create Search Help Exit and where we need it.

Please, don't send me the F1 help of Search Help Exit or its template function module name.

It will be greate if you give a short example.

Regards,

Ajoy

4 REPLIES 4
Read only

Former Member
0 Likes
605

Hi,

check out this link, it gives step by step example of implementing search help exit.

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/implementing%2bsearch%2bhelp%2bexits

Regards,

Raghavendra

Read only

Former Member
0 Likes
605

HI

In order to offer a meaningful input help for as many screen fields as possible, the R/3 System uses a number of mechanisms. If there is more than one such mechanism available for a field, the one that is furthest left or at the top of the above hierarchy is used.

In addition to the options described above for defining the input help of a field in the ABAP Dictionary, you can also define it in the screen field. The disadvantage, however, is that there is no automatic reuse.

With the screen event POV, you can program the input help of a field by yourself. You can adjust the design of the help to the standard help using the function modules F4IF_FIELD_VALUE_REQUEST or F4IF_INT_TABLE_VALUE_REQUEST. However, you should check to see if the part of the input help that you programmed yourself should be implemented as a search help exit instead (see Appendix).

You can also attach a search help to a screen field in the Screen Painter (Module Pool programming). There are some functional restrictions on this kind of attachment as compared with attachment in the Dictionary.

You should no longer use the input checks defined directly in the flow logic of the screen, from which it is also possible to derive input helps.

The function Technical info is offered in the hit list in the menu of the right mouse key. It can be used to find out which of the specified mechanisms is being used.

Read only

Former Member
0 Likes
605

Hi Ajoy,

Check this demo FM F4IF_FIELD_VALUE_REQUEST and F4IF_SHLP_EXIT_EXAMPLE. Actually in Search help exit there are couple of events like SELONE PRESEL1 PRESEL SELECT DISP. Now these events are used based on the requirement. Say you want to change the text in output display of list in F4 then use DISP and like that. check the f1 document on events.

data is stored in internal table RECORD_TAB which is declared in TABLES Parameters in FM.

Hope it will help you..

Reward Points if it helps

<b>Regards</b>

Tanweer