Skip to Content
0
Former Member
Mar 17, 2009 at 04:08 PM

modify screen when a screen field change without enter button.

5649 Views

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.