[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Re: Printing Mutiple Reports
- Subject: Re: Printing Mutiple Reports
- From: Debra Taylor <DTaylor@NETBSA.ORG>
- Date: Thu, 18 Nov 1999 12:43:03 -0600
Multiple reports are not supported in PeopleSoft at this time, at least from the information that I've read. As a work around, we have added code (CALL SYSTEM USING) to print the reports. Just remember that the reports MUST BE closed before they will print. Therefore, you will need to do a use-report $dummy to close the reports.
Hope this helps!
Debra Taylor
Programmer Analyst
Boy Scouts of America
dtaylor@netbsa.org
>>> Dave Thelen <ddthelen@SBBSNET.NET> 11/18/99 12:24PM >>>
I have run into a small dilemma when I modified an existing SQR.
Originally the program created 1 report and when run through PeopleSoft
process scheduler, the report would automatically print (when printer
was selected). I have added 1 more additional report to the program and
now it creates .lis files instead of printing each report. The original
SQR used just print statements with no reports defined. I have added:
Begin-Setup
Declare-Report A
Layout=std
End-Declare
Declare-Report B
Layout=std
End-Declare
Declare-Layout std
.
.
.
End-Declare
End-Setup
Prior to executing any print statements I added Use-Report A/B
(depending on which Report)
Is there something else I need to add? According to the documentation a
-Printer:xx flag on the command line will force the reports to go to the
printer. Do I need to add that flag to the process definition command
line?
Thanks in advance,
Dave