Hey guys,
I want to create a report for each worker with their working time each month.
I now created the following code, to open the report multiple times (different data is given)
$planCaseReport = new planCaseReport();
$planCaseReport->setup($this, $this->src("mysql_datasource"), $selectedWorkerArray[$x], $dateStart, $dateEnd, $projektNamen, $projektIds);
But unfortunately this doesn´t open the reports multiple times, its just mixes the data from all the times it got created and makes one report out of it. The reason is, that the "report.view.php" just gets called one time and not multiple times.
Is there any solution to solve this problem, that I will have the same report with different data multiple times on one page?
Than you