[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Re: multiple reports output to single file
- Subject: Re: multiple reports output to single file
- From: Don Barclay <don.barclay@SRS.GOV>
- Date: Tue, 2 Jul 2002 15:40:55 -0400
Thomas,
I am fairly certain that what you are trying to do is not possible within
SQR. You could insert the second PDF document into the first document
with Adobe (if you have Acrobat or higher). If you are doing this within
PeopleSoft, there is a way to get both pdf files sent to the report
manager (append "-MR 3" to the parameter list for the process definition).
Don Barclay
Westinghouse Savannah River Co.
Aiken, SC
>>I'm including a simple example of what I'm trying to do:
I'm trying to use a multiple layout/multiple report sqr to produce a
single
(pdf) output file. Everything works as it should except I can't figure out
how to combine the separate output sections (each with it's own header and
layout) into one output file.
Is this possible?
What I currently see is two files:
rep_01.pdf
rep.pdf
Here's the code:
-----------------------
begin-setup
declare-layout rep1_layout
orientation = landscape
end-declare
declare-layout rep2_layout
orientation = portrait
end-declare
declare-report rep1_report
layout = rep1_layout
end-declare
declare-report rep2_report
layout = rep2_layout
end-declare
end-setup
begin-program
do rep1
do rep2
end-program