Is there some built in varible?
something like
CREATE PROCEDURE `sp_DBR_some_proc()
BEGIN
select inReportName;
END
Is there some built in varible?
something like
CREATE PROCEDURE `sp_DBR_some_proc()
BEGIN
select inReportName;
END
There is an automatic parameter inAutoReportProcedure
which contains the procedure name for the current report. You can get the report name with following query:
select name
from mydbr_reports
where proc_name=inAutoReportProcedure;
--
myDBR Team
Thank you.
You must log in to post.