‎2008 Jan 10 11:06 AM
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
‎2008 Jan 10 11:10 AM
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
‎2008 Jan 10 11:09 AM
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.
‎2008 Jan 10 11:10 AM
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