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: 

Search help using F4IF_INT_TABLE_VALUE_REQUEST issue ?

Former Member
0 Kudos

Hello Folks,

I have used the FM : F4IF_INT_TABLE_VALUE_REQUEST

But whenever user click on F4, he should not get the values directly.

Instead he should get search screen and after inputting the value he has to get the list.

Please help me...<removed by moderator>.

Thanks and Regards

Ashwath..

Message was edited by: Manish Kumar

8 REPLIES 8

PeterJonker
Active Contributor
0 Kudos

For which domain/data element do you need a search help ? Did you check if there is a standard search help for this data element ?

Can you otherwise not define your own search help in SE11 ?

raymond_giuseppi
Active Contributor
0 Kudos

AFAIK FM F4IF_INT_TABLE_VALUE_REQUEST will display the internal table that you provided, no screen is provided to input criteria...

FM F4IF_FIELD_VALUE_REQUEST can use a true search-help so may provide such dynamic, but you have to replace the filling of an internal table by definition of a search help,

Note that you can in the second case

  • Use a search-help exit to keep the same logic (Implement step SELECT)  that when  filling the internal table
  • Select the correct option (Dialog with value restriction) when creating search-help.
  • Pass some additional criteria in the CALLBACK_FORM to restrict selection from screen data

Regards,

Raymond

Sidhant-Acharya
Participant
0 Kudos

Use Search help exit to provide input upon clicking the F4 help.

former_member200338
Active Contributor
0 Kudos

Create a search help with search help exit.

Set dialog behavior to "Dialog with restriction". 

Write your logic in search help exit.

Have a look at search help FIPEX_1

0 Kudos

Hi, first of all create one search help (suppose zbukrs) from se11 with the following property:

or

Use the search help in your program as matchcode object.

Like: lv_bukrs type bukrs.

SELECT-OPTIONS s_bukrs FOR lv_bukrs NO INTERVALS MATCHCODE OBJECT zbukrs.

0 Kudos

Thanks alot....

I appreciate everyones effort to help me..

0 Kudos

Kindly close this thread.

0 Kudos

Hi Ashwath,

use search help and set dialog behaviour as "restricted".

Thanks.