Hi,
I would like to request assistance in a situation we are unable to identify in your documentation, and that situation will be required for some reports we use. This refers to the generation of a "new page" as the query data varies.
Consider the following example data:
"name";"class";"grade";"year"
"Karl";"Mathematics";"1";"2018"
"Karl";"English";"2";"2019"
"Fabio";"Mathematics";"1";"2018"
"Fabio";"Portuguese";"2";"2019"
In the report view file, it will have a layout similar to:
<page header>
Hi {data.name}, below your data:
| Class | Grade | Year |
| {data.class} | {data.grade} | {data.year} |
Thank you.
<page footer>
We need to generate this "view" for each of data, in exchange for {data.name}. In the example above there will be the structure shown above for the "Karl" data, and after this a second structure for the "Fabio" data. Print Example:
<page header>
Hi Karl, below your data:
| Class | Grade | Year |
| Mathematics | 1 | 2018 |
| English | 2 | 2019 |
Thank you.
<page footer>
<page header>
Hi Fabio, below your data:
| Class | Grade | Year |
| Mathematics | 1 | 2018 |
| Portuguese | 2 | 2019 |
Thank you.
<page footer>
Ideally in a print or PDF, two pages would be generated. Is there anything standard in your tool or package that can handle this kind of generation?
Thank you for your attention.