Application Development 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: 

Change records shown in custom search help

Former Member
0 Kudos

Hai all,

i need to delete records which are shown in the search help when pressing F4 (pa30 IT0006),

only the seacrh help records are to be shown where the begda in search help LE IT0006-begda

and endda in search help GE IT0006-endda.

How to do this?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

First get required records in one itab and pass it to FM

'F4IF_INT_TABLE_VALUE_REQUEST'

  TABLES
   value_tab              =

And use it in customized search help.

Regards,

Nandha

6 REPLIES 6

former_member150733
Contributor
0 Kudos

Create a search help exit(Function Module example. F4IF_SHLP_EXIT_VENDOR ) and attach it to the search help in SE11.

In the Function module you have to remove unwanted entries from internal table 'record_tab'

Regards,

Anish Thomas

Former Member
0 Kudos

Do i have the begda and endda from the IT availible in the new FM?

0 Kudos

If it is not available you can IMPORT and EXPORT using the memory.

ie., EXPORT from the program , And in your Function Module do IMPORT statement

Regards,

Anish Thomas

Former Member
0 Kudos

Hi,

First get required records in one itab and pass it to FM

'F4IF_INT_TABLE_VALUE_REQUEST'

  TABLES
   value_tab              =

And use it in customized search help.

Regards,

Nandha

Former Member
0 Kudos

In user exit PAI on IT in export begda en endda to Memory

  • Exporteer BEGDA en ENDDA

EXPORT x0006-begda TO MEMORY ID 'X0006_BEGDA'.

EXPORT x0006-endda TO MEMORY ID 'X0006_ENDDA'.

in user exit search help i import the meomeoy id's but the lv field are empty after import

IMPORT lv_begda FROM MEMORY ID 'X0006_BEGDA'.

IMPORT lv_endda FROM MEMORY ID 'X0006_ENDDA'.

???????????????????

Edited by: Richard van Veen on Nov 20, 2008 2:11 PM

Former Member
0 Kudos
  • Exporteer BEGDA en ENDDA

EXPORT p1 = x0006-begda p2 = x0006-endda TO MEMORY ID 'X0006_DATUMS'.