‎2009 Mar 23 11:38 AM
Hi,
In module pool program I am trying to load Screen No 100 using
CALL SCREEN 0100.
It is showing ABAP Dump
But Transaction to all other custom screen's are working well
please give instructions to load SAP Initial Screen
Regards
Nausal
‎2009 Mar 23 11:53 AM
‎2009 Mar 23 11:44 AM
Hi,
Chk whether the screen layout and flow logic of the screen is activated or not.
Regards,
Lakshman
‎2009 Mar 23 11:53 AM
‎2009 Mar 23 12:03 PM
Hi,
I am using the Function Key to go back to screen 100
Dump Message
The system attempted to use dynpro 0100 in program this dynpro does not exist
Regards
‎2009 Mar 23 12:16 PM
Hi Nausal,
Check ur screen is active.
Also check your pf-status is active.
Regards,
Soumya.
‎2009 Mar 24 2:38 AM
Hi All,
Screen No 100 is not a custom screen created by me, My all screens , program and all other components are active
My Requirement is to go back to SAP Initial Screen That is why I take screen number from System Status of that screen
please help me to solve this
Regards
Nausal
‎2009 Mar 24 3:03 AM
Hi,
You can use: "LEAVE TO SCREEN 0", to go back to SAP Initial Screen or previous screen.
Regards,
Lim...
‎2009 Mar 24 3:06 AM
Hi
Try below.
SET SCREEN 0.
(or)
LEAVE TO SCREEN 0.
(or)
SET SCREEN 100.
LEAVE SCREEN.
‎2009 Mar 24 3:37 AM
Hi,
>
> Hi All,
>
> Screen No 100 is not a custom screen created by me, My all screens , program and all other components are active
>
> My Requirement is to go back to SAP Initial Screen That is why I take screen number from System Status of that screen
>
> please help me to solve this
>
>
> Regards
>
> Nausal
Try using:-
LEAVE PROGRAM.Hope this helps you.
Regards,
Tarun
‎2009 Mar 23 12:14 PM
I think either you haven't created the screen 0100 for the same module pool program or you haven't activated it.Go to se51 and check it.
Regards,
nilay
‎2009 Mar 24 3:17 AM
Hi ,
You can use the statements like this.
case sy-ucomm.
when 'BCK' . 'Here BCK will be the sy-ucomm that you have set when you clikc to go back.
leave to screen 0.
endcase.
Regards,
thej1803.