Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

overloading functions

Status
Not open for further replies.

schnut

Programmer
Mar 18, 2003
9
0
0
CA
Hi,
I'm trying to overload the F1 function in Menu Painter under Utilities -> F key consistency. I have assigned F1 the SAVE function. It works when the button is clicked on using the mouse, but when F1 is pressed, it gives me the error saying that the 'Function code cannot be selected', and that I have entered an inactive function code, how do I make this active? TIA

-kevin
 
Kevin,
Do you have PROCESS ON HELP-REQUEST in the screen flow? I use the below for mobile transactions used under both UMDC (like SAPConsole) and the SAP GUI. They can hit F1 on any field and then they get the help screen (via code in PAI100_help_request).
Mike Bergman

process before output.

module pbo100_receive_reg_item.

process after input.

module pai100_ok_receive_a_qty.

process on help-request.
field scr-ebeln module PAI100_help_request.
field scr-matnr module PAI100_help_request.
field scr-wemng module PAI100_help_request.
field scr-meins module PAI100_help_request.
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top