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

Back to selection Screen

Former Member
0 Likes
681

Dear Abapers.

My screens are as follows.

1.selection screen 2. clasical output screen 3 . interactive output screen

In interactive output if i click back button it has to come selection screen

By skiping clasical output screen.

Regadrs,

Shakya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
658

Hi Shakya

Please try by manipulating Sy-LSIND.

Kind Regards

Eswar

4 REPLIES 4
Read only

Former Member
0 Likes
659

Hi Shakya

Please try by manipulating Sy-LSIND.

Kind Regards

Eswar

Read only

0 Likes
658

this is not screens

after excuting program selection screen will

after excuting this output will come

afetr processing this output another ouput will here if i click back directly it has to come to selection-screen

Read only

0 Likes
658

Thatz what i mean.

Check this code, hope this can help you understand the same.

parameters: p_text(10) type c.

start-of-selection.
 write:/ 'First List'.

at line-selection.
  write:/ 'Secondary List'.
  sy-lsind = 0.

Kind Regards

Eswar

Read only

0 Likes
658

Hi,

I think for your requirement, you need to design your own Menu bar, so that you can code for back button in any of the secondary list. use can use AT USER-COMMAND Event for the same with your SY-UCOMM for ur BACK button.

When 'BACK'.

LEAVE LIST-PROCESSING.

or.

Leave program.

Regards:-

Santosh.

<i><b>Mark All Usefull Answers...</b></i>