To print multiple pages data on one page

Anamika

Member
Hello,

I have a dbt while coding in formscape.
I have a report having multiple pages .Now i want to make summary report of this
For eg : The reoprt contains all details of invoice number . item number and total amt..
Here in JDE O/p we have page brk at evry new invoice .So evry page contains 1 invoice number and its multiple records with total payments
Now in formscape summary I just wants to display the invoice number and total amt in one page.
I want help for coding that how to bring all different pages data in one page.

Plz help
 
It is quite easy to do summary reports, you use a loop to loop through all data first, extract the invoice number and amount only, write and append to a text file, write the file to memory object
A reporter will then pick up the data from the memory and do the report mapping
 
Back
Top