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

Screen Navigation problem

Former Member
0 Likes
642

Hi experts....

screen no 100 is where i get my print , i have enabled the default menu bar items,

when i click on back it goes to the previous screen,

my screen are

1. screen no 1000...as(selection screen)

2. 201 202 203(form)

3. 100 (print preview of the form)

when i execute 201 it goes to screen 100 when clic on back

my code gets triggered as

case sy-ucomm

when 'back'

leave to screen 0.

but my requir is as default it shud go to my sel screen - 1000

if i pass the screen no as 1000 in leave to scree 1000. its getting me a error..

any ideas can u suggest....to take back my screen as 1000(ie) my selection screen

Thanx in advance

Rachel

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
600

case sy-ucomm

when 'back'

call selection-screen 1000.

endcase

4 REPLIES 4
Read only

Former Member
0 Likes
600

CALL SELECTION-SCREEN dynnr

[STARTING AT col1 lin1

[ENDING AT col2 lin2]]

[USING SELECTION-SET variant].

Read only

0 Likes
600

Hi murali

thanx for ur reply, but if can help me out in being more

clear that will make me to solve my proble,

thx in advance

rachel

Read only

Former Member
0 Likes
601

case sy-ucomm

when 'back'

call selection-screen 1000.

endcase

Read only

0 Likes
600

thanx i tried but still the same problem exist .