Is it possible to print out a full detail section before the next detail section? Example: if I have "Details a" and "Details b", I would like to print out "Details a" and then "Details b". It should look like the following if there are 3 records in each table:
Details a
Details a
Details a
---------------
Details b
Details b
Details b
Of course, the default behavior prints out like the following.
Details a
Details b
Details a
Details b... and so on
The reason for this is that records in "Details a" are stored in a different table than records in "Detail b" and they both have the same parent table.