Best approach to call a report itself with different data selection?
I have a report and once it's done, it will display the output in PDF format of all data (ie, 1,2,3,4,5). Once it's done, then it will kick off itself and pass to it the first subset of data (ie. 1) and the output will be in excel.
Once the first subset is done then it will call with the second set of data (for example, 2, 3) and finally, it will call for the third set of data (ie. 4,5). So the max number of calls will be 3.
In the end, you'll have 4 outputs
- PDF (1,2,3,4,5)
- Excel (1)
- Excel (2,3)
- Excel (4,5)
Here's what I have currently
- Version 1 (Manual)