Application Development and Automation 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: 
Read only

Reg:selection Screen

Former Member
0 Likes
446

Hi All,

I declared a selection screen with 5 parameters, after executing it cursor will be apper on first field in selection screen but i want the cursor in third field.How can we achive this

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
429

Hi,

Without writing any code you can try like this to set the cursor....

Double click on your screen number.....

Then goto attributes tab....in it there is a field cursor-position here give the name of the parameter which you want to set.

or use this code...


AT SELECTION-SCREEN OUTPUT.
  SET CURSOR FIELD 'P_VARI'. " parameter

Regards

Debarshi

2 REPLIES 2
Read only

Former Member
0 Likes
430

Hi,

Without writing any code you can try like this to set the cursor....

Double click on your screen number.....

Then goto attributes tab....in it there is a field cursor-position here give the name of the parameter which you want to set.

or use this code...


AT SELECTION-SCREEN OUTPUT.
  SET CURSOR FIELD 'P_VARI'. " parameter

Regards

Debarshi

Read only

0 Likes
429

Thanx for ur reply