Home » Developer & Programmer » Reports & Discoverer » How to print more than 1 copy of a report with different value in Footer based on Page No
How to print more than 1 copy of a report with different value in Footer based on Page No [message #89015] Fri, 01 August 2003 10:03 Go to next message
Joby
Messages: 3
Registered: August 2003
Junior Member
Hi all

I need to print 3 copies of a report which I can do by using the Copies system parameter. Also I need to change the value of a Formula item for each page footer.

For Example the Formula should return( Copy 1-'STORE COPY', Copy 2 - 'OFFICE COPY')

How can I do this?

Thanks
Re: How to print more than 1 copy of a report with different value in Footer based on Page No [message #89017 is a reply to message #89015] Sat, 02 August 2003 04:57 Go to previous message
sureshkumar
Messages: 5
Registered: May 2000
Junior Member
Hi,
U can trye this.....

BEGIN
DECLARE
PAGE_NUM NUMBER;
begin
srw.get_page_num (page_num);
if page_num=1 then
return <...>
else
..
end if;

end;
END;

regards
suresh
Previous Topic: ReportONReports
Next Topic: Select Mulitple values from parameter in Reports6i
Goto Forum:
  


Current Time: Thu Apr 18 21:29:50 CDT 2024