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

Module Pool

Former Member
0 Likes
1,086

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

1 ACCEPTED SOLUTION
Read only

soumya_jose3
Active Contributor
0 Likes
1,067

Hi,

Whats the dump you are getting?

Regards,

Soumya.

10 REPLIES 10
Read only

former_member209217
Active Contributor
0 Likes
1,067

Hi,

Chk whether the screen layout and flow logic of the screen is activated or not.

Regards,

Lakshman

Read only

soumya_jose3
Active Contributor
0 Likes
1,068

Hi,

Whats the dump you are getting?

Regards,

Soumya.

Read only

0 Likes
1,067

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

Read only

0 Likes
1,067

Hi Nausal,

Check ur screen is active.

Also check your pf-status is active.

Regards,

Soumya.

Read only

0 Likes
1,067

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

Read only

0 Likes
1,067

Hi,

You can use: "LEAVE TO SCREEN 0", to go back to SAP Initial Screen or previous screen.

Regards,

Lim...

Read only

0 Likes
1,067

Hi

Try below.

SET SCREEN 0.

(or)

LEAVE TO SCREEN 0.

(or)

SET SCREEN 100.

LEAVE SCREEN.

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
1,067

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

Read only

Former Member
0 Likes
1,067

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

Read only

Former Member
0 Likes
1,067

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.