‎2010 May 17 11:12 AM
I am using 'call screen 1001' statement in my report. This is like my selection screen but is a module pool screen.
After pressing F8, execution and download takes place.
After that i want to output some statistics. Now if i set screen 0 and output some statistics with write statement, I am able to see output.
But on this screen when i press F3(Back), it goes to SE 38 initial screen or SAP easy access screen depending on whether its called through SE38 or through transaction.
I want to display screen 1001 again when i press back on output screen. Like when we press back on output screen it takes us to Selection screen in a report with selection screen.
‎2010 May 18 5:46 AM
Hi,
Instead of just going for the statistics display , do like this.
From your screen '1001' , try this.
SUPPRESS DIALOG.
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
Regards,
Smart
‎2010 May 17 11:20 AM
Hi,
You 'll have try to this function call screen '1001'. or leave to screen 0.
Thanks
With Regards
I.Muthukumar.
Edited by: I.Muthukumar on May 18, 2010 12:26 PM
‎2010 May 17 11:29 AM
Hi,
You could try ti call it with CALL SELECTION-SCREEN, to make it behave as a selection screen.
Or other option would be to display the statistics in another screen (or maybe with ALV) and program the correct screen flow with user-command..
Hope it helps,
MaryM
‎2010 May 17 11:37 AM
Hi,
First make a t-code for that Report. After that when the user do the back operation use the 'Leave to Current Transaction'.
With Regards,
Sumodh.P
‎2010 May 18 5:46 AM
Hi,
Instead of just going for the statistics display , do like this.
From your screen '1001' , try this.
SUPPRESS DIALOG.
LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
Regards,
Smart
‎2010 May 18 10:40 AM
Thanks a lot SMART VARGHESE .... u r truly SMART
I just did not want to set screen 0, i wanted to return to stack of screen sequence
SUPPRESS DIALOG.
LEAVE TO LIST-PROCESSING.
..... thanks a lot
Edited by: Rohit Gerrard on May 18, 2010 11:41 AM