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

select-options

Former Member
0 Likes
397

hai friends,

can anybody tell me how to disable the select-options in selection screen.

thank you

geetha

2 REPLIES 2
Read only

Former Member
0 Likes
373

Hi,

U will be using Select-options in Selection-Screen, in loop at screen give

Screen-Active = 0 -


> disabled in selection screen.

Screen-Active = 1 -


> Visible in Selection-Screen.

Regards,

Kavitha.

Read only

amit_khare
Active Contributor
0 Likes
373

make that select-option input disabled

select-options: s_opt1 for <>....

Initialization.

loop at screen.

if screen-name = 'S_OPT1'.

screen-input = 0.

screen-invisible = 0.

modify screen.

endif.

endloop.

Regards,

Amit

Reward all helpful replies.