‎2006 Dec 11 4:44 AM
hi,
Explain me how to change attributes of the object dynamically?
sarath
‎2006 Dec 11 4:48 AM
HI,
use loop at screen 2 change attributes of object dynamically.
eg.
loop at screen.
screen-name = 'p1'.
screen-invisible = '1'.
modifyscreen
endloop.
‎2006 Dec 11 5:12 AM
hi sarath,
Hope u have queried regarding screen attributes..
u can use the loop at screen for changing the attributes dynamicaly..
r1 type radiobutton group a.
loop at screen.
screen-name = 'R1'. " r1 is field name make sure u write in caps
screen-input = 0.
screen-invisible = 0.
endloop.
u can check SCREEN table in se11 u can get the attributes which u can change dynamically..so use the syntax SCREEN-ATTRIBUTE NAME....
hope i have answered u..
regards,
Rajkumar.G
‎2006 Dec 12 3:27 AM