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 not working.........

Former Member
0 Likes
1,581

hi,

I have created a search help exit and under function module I write below code

TYPES: BEGIN OF ty_s_record,
         NRRANGENR TYPE NRIV-NRRANGENR,
        END OF ty_s_record.

  data: IT_RECORD TYPE TABLE OF  ty_s_record,
            WA_RECORD type ty_s_record.

SELECT  NRRANGENR FROM NRIV INTO  TABLE IT_RECORD WHERE OBJECT = 'RV_BELEG' AND EXTERNIND <> 'X'.

     RECORD_TAB[] = IT_RECORD[].

    but no search help exit for field....

4 REPLIES 4
Read only

Former Member
0 Likes
927

Hi,

Hope your select statement didnt fail.

anyway if you see a standard search help, they will be using '  CALLCONTROL-STEP'  ;you may try copying one of those standard search help exits and make use of this

CALLCONTROL-STEP'   and see..

Read only

0 Likes
927

yes select statement work f9  even in function module of search help exit I can see RECORD_TAB

contain expected value of search help but it not display after pressing f4 help..........where I find standard search help?

Read only

Former Member
0 Likes
927

Hi

You can use the standard function to create search help F4IF_SHLP_EXIT_EXAMPLE. Just make a copy of this standard function module and u can edit the code and place the new function module name in the search help exit.

With regrads

Suneesh

Read only

0 Likes
927

hi ,

I copy F4IF_SHLP_EXIT_EXAMPLE in my FM  zbill_range but where I have to write code for select statement?

apaper