Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

regarding modulepol program

Former Member
0 Likes
534

Hi Experts,

Which statement in dialog programming makes screen fields available for input?

regards,

venkat

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
520

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.

3 REPLIES 3
Read only

Former Member
0 Likes
521

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.

Read only

0 Likes
520

That functionality u can check while designing the screen itself.

while giving name for output boxes. u can check appropriate check boxes.

Regards,

Ajay

Read only

Former Member
0 Likes
520

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