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

CHANGE ATTRIBUTES DYNAMICALLY

Former Member
0 Likes
435

hi,

Explain me how to change attributes of the object dynamically?

sarath

3 REPLIES 3
Read only

Former Member
0 Likes
405

HI,

use loop at screen 2 change attributes of object dynamically.

eg.

loop at screen.

screen-name = 'p1'.

screen-invisible = '1'.

modifyscreen

endloop.

Read only

Former Member
0 Likes
405

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

Read only

Former Member
0 Likes
405

thanks