‎2007 Oct 15 8:24 AM
Hi All,
In a interactive report, how can we set the position of Horizontal scrollbar. The requirement is to display a report with say 25 columns, and last 5 columns are input fields. Now when user fill the input values and press Enter key, the horizontal scrollbar comes to the original position. But here I want to adjust the horizontal scroll bar to the end of list(rightmost position). How to acheive this?
Useful answers will be rewarded.
Thanks in advance.
Regards,
Archana
‎2007 Oct 15 10:06 AM
hi Archana,
I am afraid you cannot do that. This scrollbar is controlled by the GUI, therefor as far as I know there is no chance to set from ABAP.
ec
‎2007 Oct 15 10:17 AM
SCROLL LIST {TO COLUMN col}
| {{LEFT|RIGHT} [BY n PLACES]}.
ur requirement is achieved thru
<b>SCROLL LIST TO COLUMN col</b>
‎2007 Oct 15 10:36 AM
Hi Hymavathi,
You are right. SCROLL LIST RIGHT can be used for scrolling the list to rightmost position. Even I have tried to use the same. If I write this statement in Start-of-Selection or End-of-selection, its working fine. But if I write it in At-User-Command, it is not working. Any idea??
Regards,
Archana
‎2007 Oct 15 10:55 AM
Thanks Hymavathi,
It worked out with the statement SCROLL LIST RIGHT INDEX SY-LSIND.
Regards,
Archana