[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Multiple Reports on UNIX through Peoplesoft Process Scheduler
- Subject: Multiple Reports on UNIX through Peoplesoft Process Scheduler
- From: Pragya Chandra <pchandra@FASTENAL.COM>
- Date: Tue, 12 Feb 2002 10:48:23 -0600
Hi..I have an sqr that creates 2 reports..a summary one and a detail one and
the user has a choice of which one they want to run. When I run the sqr on
the Client through sqrw I get the 2 reports just fine..one's called
fasar745.lis(detail) and the second is called fasar745.l01 (summary). But
when I run the same sqr through the Peoplesoft panels on UNIX I only get the
detail report even if I wanted both the detail and the summary. If I switch
the order of teh DEclare report for detail and summary then i always get the
one of top but the one on the bottom doenst print. ANy ideas? I am
thinking it has to do with some sqr enviornment variable or flags..but no
clue where to look. Thanks
Begin-Setup
Declare-Variable
integer #mr_day #mr_year #cg_day #cg_year #mr_lag
integer #mr_percent #mr_lag_ave
End-Declare
Declare-Layout Report
Line-width=90
Left-margin=0
Top-margin=0
Bottom-margin=0
End-Declare
Declare-Report Detail
Layout=Report
End-Declare
Declare-Report Summary
Layout=Report
End-Declare
end-setup