‎2008 Jan 10 11:11 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:15 AM
‎2008 Jan 10 12:07 PM
Hi lucky,
its very simple try this out.
you should write your code inAT SELECTION-SCREEN OUTPUT event.
at selection-screen output.
if rad1 = 'X'.
loop at screen.
screen-active = '1'.
screen-input = 0.
modify screen.
endloop.
elseif rad2 = 'X'.
loop at screen.
screen-active = '1'.
screen-input = 0.
modify screen
endloop.
endif.
plz reward points if helpful,
get back to me for further queries,
thanks and regards,
srikanth tulasi....s