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: 

how to set cursor position in dialog program

Former Member
0 Kudos
470

Hi,

I want to set cursor at particulor field in program.

i m trying to use with SET CURSOR FIELD V_SPEC .But it s nt working.

pla suggest me how to set cursor.

2 REPLIES 2

Former Member
0 Kudos
75

Hi ,

try this code .

data : b_name like feld-name.

data : global_cursor type i.

  • get actual tc and column *

set cursor field b_name

line global_cursor.

Regards,

Mohan.

Former Member
0 Kudos
75

Hi Kinjal,

The correct reference to the field should be in single quotes when using it in SET CURSOR statement instead of using the variable name for the field.

You can see the following thread on a similar issue and my response therein:

Link:[]

Hope this helps.

Thanks

Sanjeev