I\'ve created a simple report that takes a single parameter. This parameter is used in the query and executes fine when directly executed in the report designer. By the way I\
You need to set the parameters on the IRunAndRenderTask:
IRunAndRenderTask task = engine.createRunAndRenderTask(reportRunnable); Map< String, Object > birtParams = ...; task.setParameterValues( birtParams );