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

Missing selection screen

Former Member
0 Likes
3,257

Hi All,

I am working on a report where when I am trying to do the syntax check it's nt showing me any error but when i tried to activate it throws the following error:

Error when generating the selection screen "1000" of report

Can you please tell me what exactly I am missing?

THanks,

Rajeev

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,510

Probably some elements of the selection screen are over lapping.

Check if you are using begin of line... end of line while defining your selection screen and see that it uses no more than 83 positions.

regards,

Advait

17 REPLIES 17
Read only

Former Member
0 Likes
2,511

Probably some elements of the selection screen are over lapping.

Check if you are using begin of line... end of line while defining your selection screen and see that it uses no more than 83 positions.

regards,

Advait

Read only

0 Likes
2,510

thanks for your reply... I just went to Se80 and saw that it's not showing screen nuber 1000 under the tab screen

Read only

0 Likes
2,510

Can we see how have you declared the screen ?

regards,

Advait

Read only

0 Likes
2,510

hi,

u open the program in se80,then go to utilities,click on update navigation index,the selection screen will come.

Read only

0 Likes
2,510

Hi Soniya,

Thanks for the reply... I went to se80 but I couldn't find the update navigation option under utilities.... it just says display navigation...

Can you please guide!!!

Read only

0 Likes
2,510

Hi All,

this is my code...

selection-screen begin of block 0 with frame title text-000.

selection-screen begin of line.

selection-screen comment 5(60) p_file10.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) p_file20.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) p_file30.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) p_file40.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) p_file50.

selection-screen end of line.

selection-screen end of block 0.

selection-screen begin of block 1 with frame title text-010.

selection-screen begin of line.

selection-screen comment 5(60) text-011.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) text-012.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 5(60) text-013.

selection-screen end of line.

selection-screen end of block 1.

***

selection-screen begin of block 2 with frame title text-020.

parameters: run_date type sy-datum,

p_laufi type laufi.

selection-screen comment 5(60) text-021.

selection-screen end of block 2.

Read only

0 Likes
2,510

selection-screen begin of block 2 with frame title text-020.

parameters: run_date type sy-datum,

p_laufi type laufi.

selection-screen comment 5(60) text-021. <-- comment this line or change the length

selection-screen end of block 2.

or change as :

selection-screen begin of line.

parameters: run_date type sy-datum,

p_laufi type laufi.

selection-screen comment 25(50) text-021.

selection-screen end of line.

Read only

0 Likes
2,510

Thanks for the reply Srini.... can you please tell me what exactly is wrong and why do we need to change it like the way you said... so that I will be able to understand it little more !!!!

Read only

0 Likes
2,510

Hi Srini,

Also when I tried to change my code from what I wrote to this

selection-screen begin of line.

parameters: run_date type sy-datum,

p_laufi type laufi.

selection-screen comment 25(50) text-021.

selection-screen end of line.

on the selection screen I could see the run date and laufi fields.... but I couldn't see the the description for thses particular fields... can you please tell me what might be gng wrng!!!

THanks,

Rajeev

Read only

0 Likes
2,510

try as ...

selection-screen begin of block 2 with frame title text-020.

selection-screen begin of line.

selection-screen comment 1(10) text-021.

parameters: run_date type sy-datum.

selection-screen comment 25(10) text-022.

parameters: p_laufi type laufi.

selection-screen comment 45(20) text-023.

selection-screen end of line.

selection-screen end of block 2.

Read only

0 Likes
2,510

Thanks a lot Srini...

Can you please tell me if I can move selection-screen comment 45(20) text-023 to the next line but within the same block???

THanks,

Rajeev

Read only

0 Likes
2,510

U can ...

block1

selection-screen begin of line.

..

.

.

.

selection-screen end of line.

selection-screen begin of line.

selection-screen comment 45(20) text-023.

selection-screen end of line.

block1.

Read only

0 Likes
2,510

Thanks Srini... I just did it..... thanks lot man !!! I really appreciate it!

Read only

Former Member
0 Likes
2,510

Hi,

I It can be because of a Coments that you are using in the selection screen,

or an element the is no adjusting into the screen.

Try changing it.

Hope it will resole else share the selection screen code.

so that it can be checked what went wrong.

regards,

Gurpreet

Read only

Former Member
0 Likes
2,510

Hi Rajeev,

You have to regenrate the screen 1000 again,

by

steps:

1) comment your selection screen and acivate.

2) Then again uncomment that selection screen.. you will get the screen 1000.

if not

3) go to programs-->regenerate that report you will get the missed screen.

hope it helps you..

Read only

0 Likes
2,510

Hi Prasanth,

I tried doing this but it couldn't solve the problem.

THanks,

Rajeev

Read only

Former Member
0 Likes
2,510

This error usually get triggered because of certain selection screen elements being overlapped... please look carefully if any of the selection-screen elements is overlapping , overlapping for an example.

selection-screen begin of line.

parameters : a(10) type c visible length 10.

selection-screen pushbtton 9(10) pu_but user-command U!.

selection-screen end of line.

in the above example.

the parameter a is of length 10 so it starts from x axis 1 to 10.

then pushbutton starts from X-axis 9 and goes till 19.

here the 9 and 10 position are being overlapped by parameter and pushbutton.

please check this might be the case in your program.

if you are unable to find it.

please do paste your code where you are creating your selection screen.

it might be helpful for us to check on it.

Regards,

Ravi