‎2006 Feb 16 1:40 PM
Hi,
1.I am using a Table control.How to set the cursor from one field to the other adjacent fields without specifying the name?
2.How to disable the Enter key for the screen or for the table control?
Pls. help
-M.Aarthi
‎2006 Feb 16 2:16 PM
hi,
it is not possible to set the cursor without specifying the name , any way if u want to set the cursor on the next screen field read screen table with current field name and use index + 1 for reading next screen field name.
00 is the sy-ucomm for enter key , u can disable this screen field by modifying the screen
‎2006 Feb 16 2:16 PM
hi,
it is not possible to set the cursor without specifying the name , any way if u want to set the cursor on the next screen field read screen table with current field name and use index + 1 for reading next screen field name.
00 is the sy-ucomm for enter key , u can disable this screen field by modifying the screen
‎2006 Feb 16 3:55 PM
Hello Aarthi,
As to your second question:
To disable the Enter key for the screen, use as first statement in your PAI the following:
CHECK OK_CODE <> ' '.
The reason is that the OK_CODE of the ENTER key is space. (Please make sure that this is the case on your system, too.)
Kind regards,
Michael