‎2007 Jul 27 10:53 AM
Hi,
I`ve included a list box in my screen(dialog prog) and it appears to be disabled once I launch the screen.
I`ve written the below code in the PBO module.
LOOP AT SCREEN.
IF screen-name EQ 'p9011-ZDISAB'.
screen-inPUT = '1'.
SCREEN-ACTIVE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Is this right or should I include any other parameter for SCREEN.
(I`m able to see the values in the list box, but in read only mode)
Thanks in advance,
Farhana
‎2007 Jul 27 10:56 AM
Hi,
LOOP AT SCREEN.
IF screen-name EQ 'p9011-ZDISAB'.
screen-inPUT = 0. " Do not include the single quotes
MODIFY SCREEN.
ENDIF.
ENDLOOP.Regards
Sudheer
‎2007 Jul 27 10:56 AM
Hi,
LOOP AT SCREEN.
IF screen-name EQ 'p9011-ZDISAB'.
screen-inPUT = 0. " Do not include the single quotes
MODIFY SCREEN.
ENDIF.
ENDLOOP.Regards
Sudheer
‎2007 Jul 27 10:58 AM
Hi sudheer,
It doesn`t work without the single quote also.
Regards,
Farhana
‎2007 Jul 27 10:59 AM
HI,
Use all CAPITAL LETTERS.
LOOP AT SCREEN.
IF screen-name EQ <b>'P9011-ZDISAB'</b>.
SCREEN-ACTIVE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
when you check for the screen name.
Regards,
Sesh
‎2007 Jul 27 11:02 AM