After installing 3.2 and also with 3.3, text in the "Run report-button" fields causes a loop. The report being invoked is a report that does an update and has a parameter defined as a popup. The dialog box for the popup appears for a fraction of a second and then the screen goes blank. An update log shows that the update routine has been invoked many times before I close that tab.
Removing the text from the "Run report-button" field causes the report to work normally.
invoking line from calling report:
select 'dbr.report', 'sp_DBR_TDProduct_Update', 8, 'popup', 'tdID=17', 'newData<=8';
update routine:
DROP PROCEDURE IF EXISTS sp_DBR_TDProduct_Update
$$
CREATE PROCEDURE sp_DBR_TDProduct_Update
(tdID bigint, newData varchar(50))
BEGIN
update xhrBlossburg
.hrTransactionDetail
set PRODUCT
= newData
, name
= 'Office'
where id
= tdID;
call hrManagement.pAppLog ('hrTransactionDetail',tdID,'Update',CONCAT_WS(' | ','Product',newData));
select 'dbr.refresh', 0;
end
$$
If you need a print of the "Edit Report" page, let me know.