Application Development 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: 

Scrolling in Screen painter -

rajesh_kapoor4
Explorer
0 Kudos

Hello All,

We have created a new screen in screen painter which is of the size 68 X 134 and requires scrolling to get to bottom part of the screen. Once I scroll and bring those fields in the middle of the screen and enter data in one field ( drop down list in this case ), the field is moved back to the bottom line on the screen and requires me to scroll again.

I did use set cursor and it does move the cursor to that field but I loose all the scrolling and fields on the following lines require me to scroll again. These are different fields and there is no TAB control in this situation.

Please let me know if you have suggestions for this problem.

Thanks,

Rajesh

1 ACCEPTED SOLUTION

marcin_cholewczuk
Active Contributor
0 Kudos

Hi,

Go to your screen in screen painter, choose tab attributes and set check box "Hold scroll position"

Best Regards

Marcin Cholewczuk

5 REPLIES 5

surajarafath
Contributor
0 Kudos

You Have to do these below things.

First Declare a Char Field.
DATA: cursor_field(30) TYPE c.
Then in the PAI .
GET CURSOR FIELD cursor_field.
then in The PBO
SET CURSOR FIELD cursor_field.

madhu_vadlamani
Active Contributor
0 Kudos

HI Rajesh,

Set and get cursor methods will work.You please check else post.

Regards,

Madhu.

Former Member
0 Kudos

Hi Rajesh,

Use the following Threads to solve the Scrolling problem in Screen Painter,

[Thread1|;

[Thread2|;

[Thread3|;

Regards,

Saravana.S

Edited by: saravanasap on Jan 10, 2012 1:34 PM

marcin_cholewczuk
Active Contributor
0 Kudos

Hi,

Go to your screen in screen painter, choose tab attributes and set check box "Hold scroll position"

Best Regards

Marcin Cholewczuk

0 Kudos

Hello all and Marcin,

Thanks for your quick responses. The problem is solved and I used Hold Scrolling Check box. I appreciate all the help.

Thanks,

Rajesh