amitsdotcom
7th December 2010, 12:12
Hi,

I have a requirement in which I am trying to take a print of report of Request for Quotation. It is a customized report wherein the report prints the Request for Quotation for as many supplier as maintained in the RFQ session.

Now when I put the special field for page number and suppose we have 2 page qoutation with 3 suppliers, the report prints page 1, page 2 till page 6

However I need to reset the page number back to page number 1 when the supplier name changes, meaning its a 2 page quotation for each supplier so report prints 6 pages

Is there a way to reset the page number everytime the supplier id changes in the report ??

Esther
7th December 2010, 14:00
I think you can change it on the report script.

Try something like:


after.tccom020.suno.1:
after.layout:
lattr.pageno = 0

amitsdotcom
8th December 2010, 06:16
I tried to reset the page number in report script but after reset it to 0 the subsequent increment of page numbers does not happen, meaning the system will print page 1, page 2, page 0, page 0, page 0....

I tried increment the page number with 1 as well but it does not reflect in the report...:confused:

george7a
8th December 2010, 09:40
I think it should be "before.layout:" and page = 1:

before.tccom020.suno.1:
before.layout:
lattr.pageno = 1
You might have to increase the page manually after that.