‎2009 Feb 06 7:20 PM
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
‎2009 Feb 06 7:23 PM
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
‎2009 Feb 06 7:23 PM
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
‎2009 Feb 06 7:25 PM
thanks for your reply... I just went to Se80 and saw that it's not showing screen nuber 1000 under the tab screen
‎2009 Feb 06 7:36 PM
Can we see how have you declared the screen ?
regards,
Advait
‎2009 Feb 07 10:17 AM
hi,
u open the program in se80,then go to utilities,click on update navigation index,the selection screen will come.
‎2009 Feb 09 1:08 AM
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!!!
‎2009 Feb 09 1:13 AM
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.
‎2009 Feb 09 4:09 AM
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.
‎2009 Feb 09 4:16 AM
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 !!!!
‎2009 Feb 09 4:34 AM
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
‎2009 Feb 09 4:42 AM
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.
‎2009 Feb 09 5:01 AM
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
‎2009 Feb 09 5:03 AM
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.
‎2009 Feb 09 5:04 AM
Thanks Srini... I just did it..... thanks lot man !!! I really appreciate it!
‎2009 Feb 06 7:31 PM
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
‎2009 Feb 06 7:37 PM
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..
‎2009 Feb 09 1:06 AM
Hi Prasanth,
I tried doing this but it couldn't solve the problem.
THanks,
Rajeev
‎2009 Feb 07 10:14 AM
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