2009 Feb 16 5:50 PM
Hi
I've a screen and a want use double click control in a screen field. At attributes 've already put check box at " Responds to double click" but where i define the action ?
Can somebody help me...
Thanks.
Hi
I've a screen and a want use double click control in a screen field. At attributes 've already put check box at " Responds to double click" but where i define the action ?
Can somebody help me...
Thanks.
2009 Feb 16 5:57 PM
Hi
U need to assign a function code for the double click into your status gui: the doubleclick has to be assigned to function code linked to F2 (keyboard key).
Then u need to manage the doubleclik in your user-command.
MODULE USER_COMMAND.
CASE OK_CODE.
WHEN <DOUBLE CLICK>.
..................................................Max
2009 Feb 16 6:02 PM
In PF-STATUS-->SET THE FCODE FOR CLICK.
Module user_command.
case sy-ucomm.
When 'PICK'.
Endcase.PICK = OK_CODE FOR DOUBLE CLICK
Regards,
Gurpreet
2009 Feb 16 10:22 PM
Just an additional info: double click = F2, check in menu painter if your status contains 'PICK' command assigned to F2. You can define your own command with different name, but you have to know where you will find this name.
Regards,
Pavel