‎2007 Jun 27 9:56 AM
Hi,
In Module pool how to handle the keyboard <u><b>Enter</b></u><b> button</b> Because when i press enter and debug then i get the sy-ucomm value is blank but I have to handle this <b>Enter</b> button. So please send me your reply if u have faced this problem earlier....
Thanks
Prince
‎2007 Jun 27 9:59 AM
Hi Prince,
In SY-UCOMM take one more case as
when others. It means Your blank value or Enter.
Reward if useful!
‎2007 Jun 27 9:59 AM
Hi Prince,
In SY-UCOMM take one more case as
when others. It means Your blank value or Enter.
Reward if useful!
‎2007 Jun 27 10:01 AM
Hi Prince,
Try this,
Case Sy-ucomm.
When ' '. -
> space represents the Enter.
Write ' you pressed Enter'.
Endcase.
Thanks.
‎2007 Jun 27 10:02 AM
Hi,
I have Faced this Situation Earlier.
<b>The OKCODE for Enter Button is 'CRET'</b>
U write the code for handling the Ok Button,
CASE SY-UCOMM.
WHEN 'CRET'.
...
...
ENDCASE.
Regards,
Padmam.