‎2007 Oct 29 8:01 AM
Hi All,
In my screen i have 3fields(This is RF ID). When the user scans th first field
the cursor should automatically move to the next field. This should happend before pressing any key by the User.
Can anybody tell me how to do this.
Thanks,
Mungala.
‎2007 Oct 29 8:14 AM
HI Mungala
Try this logic.
Write this logic in At selection-screen output event." If its Report.
If Module-pool then use " PBO event.
If <Field1> is not initial.
Set Cursor on field2.
endif.
Reward me if its helpful.
Ravi
‎2007 Oct 29 8:17 AM
Hi.
Use
SET CURSOR FIELD 'WA_WORKAREA-COLUMN1'.
The name WA_WORKAREA-COLUMN1 should be in all-caps.
Hope this helps.
Benedict
‎2007 Oct 29 8:30 AM
Hi,
Try this.
If not F1 is initial..
Set Cursor on F2.
endif.
Regards,
Prashant