‎2007 Jun 11 4:48 AM
Hello All,
I have an input/output field in a screen. I would like to have it open for input which means, I should be able to enter values in to it during runtime. I have made the check for Input Field in the attributes of the screen element. Still during runtime it is grayed out.
Kindly help me by suggesting whether I should make any other configuration settings for making this field active.
Thanks in advance
Sudha
‎2007 Jun 11 5:03 AM
Hi,
Did you create a Input/output field or label..
Also in the PBO check in the debugging...if there is any code that is disabling the field..
Thanks,
Naren
‎2007 Jun 11 4:53 AM
Hi,
Check the input/ouput field attributes..Make sure the output only check box is not checked..And the Input check box is checked..
Thanks,
Naren
‎2007 Jun 11 4:59 AM
Thanks muthu for the fast reply. I have done both these configuration. Still it is grayed out.
‎2007 Jun 11 5:03 AM
Hi,
Did you create a Input/output field or label..
Also in the PBO check in the debugging...if there is any code that is disabling the field..
Thanks,
Naren
‎2007 Jun 11 5:38 AM
hi Sudha,
I hope all the settings you have done for making the field input during runtime ... esp in the attributes . If still it is not allowing for input then , use a loop at screen .... end loop stmt in the PBO of your screen and try to make the field accept user entries ..
here is a sample :
loop at screen .
if screen-name = ' SCREEN FIELD NAME '.
screen-input = 1.
modufy screen .
endloop.
hope this should solve your problem .
Reward if helpful !
Regards,
Ranjita
‎2007 Jun 11 5:54 AM
Thanks, the issue is resolved. Even though the screen status was shown as active, it was not activated. We activated it again and the screen was ready for input.