‎2007 Sep 17 6:00 PM
Every time I enter a value in the Editable ALV field and press enter, the cursor runs back to the first cell .I want the cursor to remain in the present cell after the enter. I am using ALV with objects.
How can this be made possible.
Thank you
‎2007 Sep 17 6:18 PM
Hello Krish,
I guess you can use set cursor command in order to acheive this.
please check the documentation and use this in PBO.
Thanks
Seshu
‎2007 Sep 17 6:18 PM
Hello Krish,
I guess you can use set cursor command in order to acheive this.
please check the documentation and use this in PBO.
Thanks
Seshu
‎2007 Sep 18 2:11 PM
Hi Seshu
Well , my situation is that , The ALV container is in a dialog screen. I want the cursor to be at the cell which was edited last , rather than running back to the first cell. How to do this.
‎2007 Sep 18 2:17 PM
Hi Krish,
Use the method CL_GUI_ALV_GRID >set_scroll_info_via_id
in the PBO after receiving the scroll info in PAI through the method get_scroll_info_via_id
Message was edited by:
Rajesh
‎2007 Sep 18 2:17 PM
Hi,
Forst you need to find the Cursor pisition based on your Click, you can use the GET CURSOR <FIELD> to get the cursor position, while you coming back to the you can set the Cursor position using the same field, you can use the SET CURSOR <FIELD>
Regards
Sudheer
‎2007 Sep 18 3:29 PM
My output screen is controlled in class , so I am not able to use the SET CURSOR FUNCTIONALITY , is there a method hat allows you tot set the cursor position .