Hi,
Group all the 7 fields and then in the PBO module set screen-active = 0 in the loop over SCREEN.
LOOP AT SCREEN.
*Check for your group and the condition you want and then set
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDLOOP.
Regards,
Sesh
Message was edited by: Seshatalpasai Madala
Hi Josephine,
It is worrying that you can't set a break point.
How do you know your code is getting executed? You have made sure you exit is active and all that stuff?
Also I would try
loop at screen. if <whatever>. screen-invisible = 1. screen-input = 0. screen-output = 0. screen-required = 0. (if this is needed) modify screen. endif. endloop.
Hope this helps.
Cheers,
Phil.
Add a comment