Hi guys!
I have a question about modify a screen . I have a checkbox in my screen and when it's checked
other field of the screen called name is editable (screen-input = 1) , in the other case is not editable
(screen-input = 0).
I put in my PBO.
IF CHECK IS NOT INITIAL.
LOOP AT SCREEN.
IF SCREEN-NAME = 'MY_FIELD.
SCREEN-INPUT = 1.
MODIFY SCREEN.
EXIT.
ENDIF.
ENDLOOP.
ENDIF.
But it only works when I press enter button . How can I do for changing screen field mode without press the button , automatically when the I check field CHECK?.
Thanks a lot.