Thursday, December 20, 2007

How a output only field can be changed to input enable depending upon the value in another screen field.

By using LOOP AT SCREEN and then MODIFY SCREEN Under PBO module of the flow logic of the screen, this can be achieved

LOOP AT SCREEN.
IF SCREEN-NAME EQ "".
SCREEN-INPUT = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.

No comments:

Blog Archive