‎2007 Jul 01 8:15 AM
hai friends,
can anybody tell me how to disable the select-options in selection screen.
thank you
geetha
‎2007 Jul 01 9:02 AM
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.
‎2007 Jul 01 9:27 AM
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.