‎2007 Feb 01 9:55 AM
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
‎2007 Feb 01 10:01 AM
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
‎2007 Feb 01 10:02 AM
loop at screen.
if screen-name = 'FIELD1' or
screen-name = 'FIELD2' or
screen-name = 'FIELD3'.
screen-input = 0.
modify screen.
endif.
endloop.