2008 Jan 14 5:03 PM
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.
2008 Jan 14 5:13 PM
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.
2008 Jan 14 5:19 PM