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: 

cursor movement

Former Member
0 Kudos

Hi friends.......please help me, In my program cursor is moved to next page only when i press page down button its working fine,But now i want to move the cursor to next page by pressing ENTER key instead of page down button how to do this.

1 REPLY 1

Former Member
0 Kudos

Hi,

Set Pf status in your program,

SET PF-STATUS 'PF03'.

Here Double click in PF03 > Function key> ENTER IN FIRST POSITION(One Tick mark is there ) then save and activate after finish that you come to coding here,

DATA: OK_CODE TYPE SY-UCOMM.

IF OK_CODE = 'ENTER'

CALL SCREEN '<SCREEN NUMBER>'

ENDIF.

IF USEFULL REWARD