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 With Import Parameter

Former Member
0 Likes
1,940

Hi,

- I create a search help and checked one parameter as import and export;

- Associate this search help to a field in a structure;

- Create a screen with a table control based on that structure;

The importing procedure is not working.

When the screen field is filled with some data that exists in database and

I press F4, it shows me all records. The search help is not restricting the

records by the value of the field.

The exporting is working fine.

Do I neet to code some search help exit?

My version is ECC6 (603).

Thanks

Michel

Hi,

- I create a search help and checked one parameter as import and export;

- Associate this search help to a field in a structure;

- Create a screen with a table control based on that structure;

The importing procedure is not working.

When the screen field is filled with some data that exists in database and

I press F4, it shows me all records. The search help is not restricting the

records by the value of the field.

The exporting is working fine.

Do I neet to code some search help exit?

My version is ECC6 (603).

Thanks

Michel

5 REPLIES 5
Read only

Former Member
0 Likes
1,269

Hi,

use FM

F4IF_INT_TABLE_VALUE_REQUEST .

Regards,

jaya

Read only

Former Member
0 Likes
1,269

whatever the fields you have specified in the Search help, those values will be picked. Not required to write any code it should work.

Read only

keerthy_k
Product and Topic Expert
Product and Topic Expert
0 Likes
1,269

Hi Michel,

The IMPORT column in the search help is to show this field in the Hitlist and EXPORT column is to retrive the value shown in the hitlist which is selected to the screen field. So if u need to filter the values according to another field in the screen, u have to attach a search help exit to ur serach help.

Thanks,

Keerthi

Read only

Former Member
0 Likes
1,269

Hi

Use function module

'F4IF_INT_TABLE_VALUE_REQUEST' -- for Search Help

'DYNP_VALUES_UPDATE' -- for backfilling the values

Read only

Former Member
0 Likes
1,269

Answered.

When the value of imported field match exactly with some record in database, the search help ignores this import parameter (like option 'EQ' in a range), but, if I use some mask in the field (* or +, like option 'CP' in a range), the search help filter correctly.

Thanks

Michel Amaral