‎2008 Nov 15 7:14 AM
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
‎2008 Nov 15 7:46 AM
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
‎2008 Nov 15 7:46 AM
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
‎2008 Nov 15 8:23 AM