Hi,
I am looking for a way of of paging through a large result set automatically. I want my reports to be displayed on a screen in our warehouse to show upcoming contracts, with no user interaction. So if the result set is longer than can be displayed I would like it to cycle through the pages. I am currently using a long winded way of achieving this by using a second table and the 'dbr.refresh' command, writing the number of rows displayed to the second table and then offsetting the table by this many rows on the next refresh and updating the second table every time. However, I don't think this is going to work with multiple screens showing the same report as they will both be attempting to write to the same table.
Is there a way of doing this within the report code and not relying on a second table? I have played around with the 'dbr.pager' function, and while this is a simpler way of splitting the report in to pages, I can't seem to find a way of automating it.
Any help or theories would be appreciated.