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

Setting Horizontal scrollbar position

Former Member
0 Likes
1,295

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

4 REPLIES 4
Read only

JozsefSzikszai
Active Contributor
0 Likes
847

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

Read only

hymavathi_oruganti
Active Contributor
0 Likes
847

SCROLL LIST {TO COLUMN col}

| {{LEFT|RIGHT} [BY n PLACES]}.

ur requirement is achieved thru

<b>SCROLL LIST TO COLUMN col</b>

Read only

0 Likes
847

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

Read only

0 Likes
847

Thanks Hymavathi,

It worked out with the statement SCROLL LIST RIGHT INDEX SY-LSIND.

Regards,

Archana