Sorry, took me a while, haven’t touched PP7 for some time…
The issue is within your repeat of your DETAIL group.
The Iteration condition determine when to repeat.
The Condition to exit and overflow is use to determine when an overflow (meaning a new page usually similar to the current one but for the data) is needed to continue the repeat.
The repeat of DETAIL group of FrontPage need to be set as follow:
- Iteration condition: = ¤titeration < 3
- Condition to exit and overflow: false
Because you don’t want to overflow that page.
Now the repeat of DETAIL group of BackPage need to be set as follow:
- Iteration condition: true
- Condition to exit and overflow: = &iterationcount > 30
Because you want to overflow that page whenever you have more record that can be shown on that page. 30 is an approximation, I’ll let you figure out how much you can actually fit on the BackPage.
Hope that helps.