‎2008 Feb 27 2:04 PM
Hi Experts,
Which statement in dialog programming makes screen fields available for input?
regards,
venkat
‎2008 Feb 27 2:09 PM
The input/output property is set at design time in the Screen Painter.
However, this value can be changed in the PBO module of a screen with logic like this:
LOOP at SCREEN.
if SCREEN-name = 'YOUR_FIELD'.
screen-input = '1'. " to enable input OR see below
modify screen.
endif.
ENDLOOP.
OR
screen-input = '0'. " to disable input.
‎2008 Feb 27 2:09 PM
The input/output property is set at design time in the Screen Painter.
However, this value can be changed in the PBO module of a screen with logic like this:
LOOP at SCREEN.
if SCREEN-name = 'YOUR_FIELD'.
screen-input = '1'. " to enable input OR see below
modify screen.
endif.
ENDLOOP.
OR
screen-input = '0'. " to disable input.
‎2008 Feb 27 3:04 PM
That functionality u can check while designing the screen itself.
while giving name for output boxes. u can check appropriate check boxes.
Regards,
Ajay
‎2008 Feb 27 3:06 PM
Hi ,
When you create the element on the screen there will be a set of attributes which include input and output , since you want to make it input enabled you need to check the input check box .
Regards
Arun