Application Development 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: 

Selection screen - where is my parameter?

Former Member
0 Kudos

Hi all!

I've got a curious situation! I added a new parameter in my abap program.


SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-004.
...
PARAMETERS p_wkzrl  TYPE boolean AS CHECKBOX DEFAULT 'X'.
...
SELECTION-SCREEN END OF BLOCK b1a.

In our test system it works fine! But in our productive system is no flag! The source code is right, but the parameter will not be displayed on screen. We have the right order in our transport queue. Is it possible that there is a buffer with inconsistent data? Very curious....!

Thanks for help!

Florian

4 REPLIES 4

Former Member
0 Kudos

BEGIN OF BLOCK b1 and SELECTION-SCREEN END OF BLOCK b1a?

Or are there any more blocks that you haven't mentioned?

Former Member
0 Kudos

Oh sorry - that was a copy + paste error! There are more blocks that are encapsulated by block b1!

But we solved it! Although the complete program was active, we simply gerenerate it again and it works. Seems that there was something inconsistent.

Thank you,

Florian

0 Kudos

Yes, it happens many times, the program index doesn't get generated and you need to do it manually at times.

I wonder why.

regards,

Advait

Former Member
0 Kudos

The application has the be activated again - althought there are no changes done!