‎2007 Jun 05 1:23 PM
Hy!
I have a radiobutton and when I choose it I want to make the fields that appear for the parameters <b>not editable.</b>
Are parameters, not I/O fields.
Any ideas?
Thank you.
‎2007 Jun 05 1:38 PM
Hi,
follow this logic...
parameters : p_matnr like mara-matnr.
<b>at selection-screen output.</b>
loop at screen.
if screen-name = 'P_MATNR'.
screen-input = 0.
screen-output = 0.
modify screen.
endif.
endloop.
regards,
sudheer.
‎2007 Jun 05 1:32 PM
Hi,
check this..
parameters : p_matnr like mara-matnr.
at selection-screen output.
loop at screen.
if screen-name = 'P_MATNR'.
screen-input = 0.
modify screen.
endif.
endloop.
endloop.
Cheers,
Simha.
Reward all the helpful answers..
‎2007 Jun 05 1:38 PM
Hi,
follow this logic...
parameters : p_matnr like mara-matnr.
<b>at selection-screen output.</b>
loop at screen.
if screen-name = 'P_MATNR'.
screen-input = 0.
screen-output = 0.
modify screen.
endif.
endloop.
regards,
sudheer.
‎2007 Jun 05 1:41 PM
Hi,
Do this...
At Selection-Screen Output.
Loop At Screen.
If Screen-Name = 'Radios'.
Screen-Input = 0.
Modify Screen.
Endif.
Endloop.
Regards,
Younus
<b>Reward Helpful Answers:-)</b>