2014 Dec 08 1:49 PM
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
2014 Dec 08 2:27 PM
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 ?
2014 Dec 08 2:45 PM
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
Regards,
Raymond
2014 Dec 09 5:48 AM
Use Search help exit to provide input upon clicking the F4 help.
2014 Dec 09 6:51 AM
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
2014 Dec 09 7:47 AM
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.
2014 Dec 09 8:34 AM
2014 Dec 09 8:41 AM
2014 Dec 09 9:55 AM
Hi Ashwath,
use search help and set dialog behaviour as "restricted".
Thanks.