Hi ,
i have used below code for the screen to be disabled for for certain transaction
MODULE STATUS_0111 OUTPUT.
IF SY-TCODE EQ 'XD03'
LOOP AT SCREEN.
IF SCREEN-GROUP1 EQ 'ZL'.
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
ENDMODULE.
but in debug i am not able to see the screen group so its not disabling the screen can anyone tell should we register the screen group anywhere else