hi
did jberic resolve the issue, it sounds like the same problem i have .
my code is
DROP PROCEDURE IF EXISTS sp_DBR_TF_Site_Description
$$
CREATE PROCEDURE `sp_DBR_TF_Site_Description`()
BEGIN
select 'dbr.report', 'sp_DBR_TF_PHR_Project_Prog', 'inline', 'progressproject_code=Code';
#select 'dbr.report', 'sp_DBR_TF_PHR_Project_Issues', 'issueproject_code=Code';
#select 'dbr.report', 'sp_DBR_TF_PHR_Project_actions', 'actionproject_code=Code';
#select 'dbr.report', 'sp_DBR_TF_PHR_Project_risks', 'riskproject_code=Code';
select
v.Code as 'Code',
v.Description as 'Description',
v.Status as 'Status',
v.Stage as 'Stage',
v.`Initiated Date` as 'Initiated Date',
v.`Closed Date` as 'Closed Date',
v.`Completed Date` as 'Completed Date'
from reporttest.vw_prj01 v;
END
$$
calling this report
DROP PROCEDURE IF EXISTS sp_DBR_TF_PHR_Project_Prog
$$
CREATE PROCEDURE `sp_DBR_TF_PHR_Project_Prog`( progressproject_code varchar(45))
BEGIN
select
v.`Progress Code` as 'Progress Code',
v.`Progress Description` as 'Progress Description',
v.`Logged By` as 'Logged By',
v.`Progress Date` as 'Progress Date'
from reporttest.vw_prj04 v
where project_code = progressproject_code;
END
$$
hope someone can spot the mistake, i'm sure it is obvious but ive been staring at it for hours now. :-)