Hi,
There are 5 radio button (in dialog program) and initially a push button will be made invisible.
But when the 3rd radio button is selected then that push button should be made visible.
For that i wrote a code like this in the PBO of the screen.
LOOP AT SCREEN.
IF SCREEN-NAME EQ 'RB1' AND
rb1 EQ c_x.
SCREEN-INPUT EQ '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
But an error (Stament "SCREEN-INPUT" is not defined. Check your spelling) is coming when i try to activate.
And also whether this code should be written in PAI or PBO of the screen.