2010 Feb 19 11:20 AM
Hi experts,
I need to create F4 help for select-options.
Here I am using the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
for Parameters this is working fine.
but for select options do we need to call this FM twice like
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-LOW
Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-HIGH
Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
or is there any other way?
Can anybody suggest please.
Thanks,
Sudheer
Edited by: sudheer kumar on Feb 19, 2010 12:20 PM
2010 Feb 19 11:27 AM
Hi,
Yes you will have to proceed with the same way for SELECT-OPTIONS.
Refer
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-low.
PERFORM matnr_f4_help CHANGING s_matnr-low.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-high.
PERFORM matnr_f4_help CHANGING s_matnr-high.
FORM matnr_f4_help CHANGING ch_matnr TYPE matnr.
"Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
ENDFORM.
Hope this helps you.
Regards,
Tarun
Hi experts,
I need to create F4 help for select-options.
Here I am using the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
for Parameters this is working fine.
but for select options do we need to call this FM twice like
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-LOW
Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-HIGH
Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
or is there any other way?
Can anybody suggest please.
Thanks,
Sudheer
Edited by: sudheer kumar on Feb 19, 2010 12:20 PM
2010 Feb 19 11:26 AM
hi
try this
SELECT-OPTIONS:s_tt FOR mara-aenam MATCHCODE OBJECT zcustom_b9.
zcustom_b9--->Search help name
some of the data element already having search help.
2010 Feb 19 11:27 AM
Hi,
Yes you will have to proceed with the same way for SELECT-OPTIONS.
Refer
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-low.
PERFORM matnr_f4_help CHANGING s_matnr-low.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-high.
PERFORM matnr_f4_help CHANGING s_matnr-high.
FORM matnr_f4_help CHANGING ch_matnr TYPE matnr.
"Call FM 'F4IF_INT_TABLE_VALUE_REQUEST'.
ENDFORM.
Hope this helps you.
Regards,
Tarun
2013 Oct 02 8:31 PM
hi tarun sir,
your answer is help full,,
thank q .
regards,
uday bhaskar,,..
2010 Feb 19 11:29 AM
2010 Feb 19 11:45 AM
Hi,
if the search help is provided for the dataelement, there is no need to give the custum F4 help.
For ex: matnr dataelement contains MAT1 as searchhelp, so no need for explicit search help.
its always better and easy to maintain the search help at dataelement level instead of custum help.
thanks,
teja.
2010 Feb 19 12:13 PM
Hi,
As already suggested by Teja,there is already an explicit search help maintained at the data element level.You can use this explixit searach help instead of craeting your own.
In case you want to craete your own search help then your approach seems to be correct.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |