‎2011 Aug 05 2:42 PM
i had a tabler control with say 50 rows.when i make last few rows editable ,
the cursor reaches the editable rows but i have to scroll the screen manually.
so i need a command that will scroll the table control to the editable row ,
and i dont have to scroll but to enter the data and save.
‎2011 Aug 05 3:38 PM
Hi. There's one thing you can do.
If you know where the editable rows are, you can set the table control's fields TOP_LINE accordingly, so if the editable rows begin at line number five, what you can do is:
g_d_tc-top_line = 5.
This should position the cursor at line number 5. You just have to figure out, where in your coding you have to do this.
Best regards.
‎2011 Aug 06 7:32 AM
Hi Avi,
Refer below:
At PBO you can set the cursor on a specific field of a specific row of a table control.
SET CURSOR FIELD .
if you only want to determine the row of the table control. SY´-SUBRC allows you to check if the cursor is placed in a row of a table control.
BR
Dep
‎2011 Aug 08 5:26 AM
thankyou for all ur help, but my concern is to get rid of manual scrolling.and the editable rows should be on focus at monitor .