‎2013 Nov 22 7:55 AM
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....
‎2013 Nov 22 8:06 AM
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..
‎2013 Nov 22 8:13 AM
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?
‎2013 Nov 22 8:29 AM
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
‎2013 Nov 22 8:47 AM
hi ,
I copy F4IF_SHLP_EXIT_EXAMPLE in my FM zbill_range but where I have to write code for select statement?
apaper