Ok so I created a Drill down Report (lets call it DrillONE
) which uses a hyperlink to drill down to a other report (lets call it DrillTWO
)
the drill down report (DrillTWO)
doesn't have Input controls because it gets all its info from the report that is calling it (DrillONE)
So the hyperlink to DrillTWO
looks something like this
"./flow.html?_flowId=viewReportFlow&reportUnit=
%2FNWU%2FStudentInformation%2FAcademicProgramDevelopment%2FAPQIBI005drill
&startDate=" + new SimpleDateFormat("yyyy/MM/dd").format($P{startDate})"
Now my problem comes when Going back from DrillTWO
to DrillONE
(Without having to enter the input controles again and clicking RUN)
What happens is When I click the hyperlink back to DrillONE
it sends the parameters and everything along fine, but it loads the input control screen and then the user has to run the report
I want it to go directly to DrillONE
and run it, (Skip the input controle screen)