cancel
Showing results for 
Search instead for 
Did you mean: 

Text editor control to be made non-editable

former_member182041
Active Contributor
0 Kudos

Hello Experts,

Need a small help from you people.

I need to make a text editor control non-editable,i n a sub-screen; depending upon the value of a field on the main screen. Can you please let me know of the easiest way out with this?

Thanks in advance,

Kumud.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

You can write a code in PAI of main screen. there by using loop at screen you can make that field editable or disabled.

Code sample:

loop at screen.

****condition for value check

if screen-name = 'TEXT_EDIT_NAME'

screen-output = 1.

screen-input = 0.

modify screen.

endif.

endloop.

Hope this will help you.