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

disable screen fields in module pool program

0 Likes
771

hi i want to disable a field im modulepool prog

when i select a record from my table control then press read(button) my data from table comtrol comes to my screen fields .

my screen fields r 4 and i editing only the 4th one after that i press change button and the record changes in tc.

insted of all 4 only 1 (4th one should be able to edit)

saurabh desai

2 REPLIES 2
Read only

Former Member
0 Likes
386

Hi,

Goto the screen & open the properties of the field which u want only to display,

check DISPLAY ONLY check box.

*********reward all useful replies

Read only

Former Member
0 Likes
386
loop at screen.
 if screen-name = 'FIELD1' or
    screen-name = 'FIELD2' or
    screen-name = 'FIELD3'.
    screen-input = 0.
    modify screen.
 endif.
endloop.