Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Cursor position on screen

Former Member
0 Kudos

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.

3 REPLIES 3

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi.

Use

SET CURSOR FIELD 'WA_WORKAREA-COLUMN1'.

The name WA_WORKAREA-COLUMN1 should be in all-caps.

Hope this helps.

Benedict

former_member386202
Active Contributor
0 Kudos

Hi,

Try this.

If not F1 is initial..

Set Cursor on F2.

endif.

Regards,

Prashant