Hi
When I am trying to change the selection scren flow logic I get the following message:
Selection screen: Report generation makes screen changes ineffective.
Whatever I am changing is not taking affect in runtime.
Even though I have activated the changed code for the screen
What shall I do resolve this?
Thanks
Gopal
Hi
You should use the AT SELECTION-SCREEN and AT SELECTION-SCREEN OUTPUT events to program the flow logic. SAP generates its own code for the selection-screen and any changes you make there will get over-written each time the program is generated/activated.
Regards
Shounak
Hello,
You should use <b>at selection-screen, Initialization</b> events for the control of flow logic.
regards,
Naimesh
You should not be changing the screen flow logic of a standard selection screen 1000. It will always be regenerated. In order to modify the standard selection screen, you can do this in the AT SELECTION-SCREEN output event and loop at screen and change the attributes.
Loop at screen. if screen-name = 'P_CHECK'. screen-input = '0'. modify screen. endif. endloop.
Regards,
Rich Heilman
Add a comment