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

Parameters

Former Member
0 Likes
442

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
421

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.

3 REPLIES 3
Read only

Simha_
Product and Topic Expert
Product and Topic Expert
0 Likes
421

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..

Read only

Former Member
0 Likes
422

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.

Read only

Former Member
0 Likes
421

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>