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

how to set cursor position in dialog program

Former Member
0 Likes
946

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.

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
Read only

Former Member
0 Likes
551

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.

Read only

Former Member
0 Likes
551

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