I have a report that i need to have multiple editable fields per line.
I am having to use radio buttons because check boxes are supported.
main report:
select 'dbr.editable', 'Email', 'sp_DBR_uwupdate1', 'uwid=iduw_journal', 'type=radiobutton', 'sp_DBR_radiochoice';
select client_app_id as 'Client ID'
, client_email as 'Email'
, iduw_journal
from x.uw_journal;
update report:
CREATE PROCEDURE sp_DBR_uwupdate1
( uwid int, vch int)
BEGIN
update dw_auto.uw_journal
set client_email = vch
where iduw_journal = uwid;
sp_DBR_radiochoice:
CREATE PROCEDURE sp_DBR_radiochoice
()
BEGIN
select radio_id, descr from mydbr.radio_choice;
radio_choice looks like:
radio_id - descr
----------------
0 - 'No'
1 - 'Yes'
What I want the user to be able to do is click on the EMAIL field in the main report and
have the option to select 'Yes' or 'No'. A check box would be the best option. But my report keeps returning "Do not understand paramerer 'sp_DBR_radiochoice" (yes parameter is misspelled in the error).
Please advise!