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

parameter value not to be editable

Former Member
0 Likes
563

hi

i have 2 radiobuttons and on3 paramters in the input of the report

if i select radio1 the parameter value has to editable if i select radio2 the parameter values need not to be editable......... may i know the procedure.

thanks in adavance

Lucky

1 ACCEPTED SOLUTION
Read only

abdulazeez12
Active Contributor
0 Likes
528

You need to do that in AT SELECTION SCREEN OUTPUT using SCREEN structure.

If radio1= X

loop at screen.

if screen-name = 'PARAMETER'.

screen-input = '0'.

modify screen.

endif.

endloop.

endif.

Regards

Shakir

2 REPLIES 2
Read only

Former Member
0 Likes
526

AT SELECTION-SCREEN OUTPUT.

CHECK: <radiobutton is set>.

LOOP AT SCREEN.

IF SCREEN-NAME = <your parameter>.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Regards,

John.

Read only

abdulazeez12
Active Contributor
0 Likes
529

You need to do that in AT SELECTION SCREEN OUTPUT using SCREEN structure.

If radio1= X

loop at screen.

if screen-name = 'PARAMETER'.

screen-input = '0'.

modify screen.

endif.

endloop.

endif.

Regards

Shakir