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

Module pool:Screen from Scrolling or Jumping to Initial Position

former_member188791
Participant
0 Likes
1,691

Hi Group,

I have adeded 4 check boxes in a sub screen  ,out of 4 check boxed in 2 check boxes I m using Function codes, when user clicking these 2 check boxes screen jumping/scrolling to initial screen ,when I removes Function code it works fine, can any body suggest.

I checked the below link but the work around not working:

http://scn.sap.com/community/abap/blog/2014/02/25/stop-module-pool-screen-from-scrolling-or-jumping-...

1 ACCEPTED SOLUTION
Read only

former_member202818
Active Contributor
0 Likes
1,251

Hi Rajiv,

You can also try this..

SET CURSOR FIELD 'GV_X'.  "GV_X is check box field name


Regards

Sreekanth

Hi Group,

I have adeded 4 check boxes in a sub screen  ,out of 4 check boxed in 2 check boxes I m using Function codes, when user clicking these 2 check boxes screen jumping/scrolling to initial screen ,when I removes Function code it works fine, can any body suggest.

I checked the below link but the work around not working:

http://scn.sap.com/community/abap/blog/2014/02/25/stop-module-pool-screen-from-scrolling-or-jumping-...

4 REPLIES 4
Read only

former_member202818
Active Contributor
0 Likes
1,252

Hi Rajiv,

You can also try this..

SET CURSOR FIELD 'GV_X'.  "GV_X is check box field name


Regards

Sreekanth

Read only

0 Likes
1,251

Hi Sreeknath,


Where I need to set curser field is it in PAI or PBO

Read only

0 Likes
1,251

I tried this in PAI its not working

Read only

0 Likes
1,251

Hi Rajiv,

In PBO of subscreen.

if ok_code = 'CHK1'.

  set cursor field 'GV_X1'

endif.

if ok_code = 'CHK2'.

  set cursor field 'GV_X2'

endif.

Regards

Sreekanth