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: 

handling Cursor in module pool

Former Member
0 Kudos

Hi All,

I have created a Screen 100. in that I have few text box and a Table Control. When i Enter some data in Table Control and hit enter the Cursor starts blinking in Textbox1, How can I control this I want the Cursor to be there in that Table Control.

Thanks in Adv

4 REPLIES 4

Former Member
0 Kudos

hi,

check with these links

Cheers

Alfred

Reward points for helpful answers.

Former Member
0 Kudos

Hello,

U can achive this using the SET CURSOR FIELD f.

If useful reward.

Vasanth

anversha_s
Active Contributor
0 Kudos

hi,

use this.

if error.

SET CURSOR FIELD <field_name> ."field_name should be in caps and in quotes

regards,

anver

if hlpful pls mark points

Former Member
0 Kudos

I think what you want is that the cursor will remain where the user left it, after they press enter?

If so, in your PAI modules, you could include a

GET CURSOR field xxxx

statement, and then in your PBO modules, you could set it back using the

SET CURSOR field xxxx (the same field you used to store the value).

Otherwise, it will just put the cursor on the first field on the screen.

Kylie