[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Re: Ran SQR in Process sched, It says initiated even when...
- Subject: Re: Ran SQR in Process sched, It says initiated even when...
- From: Martina Geissler <mgeissler@DTTUS.COM>
- Date: Thu, 6 May 1999 13:01:01 -0500
- Alternate-recipient: Allowed
- Conversion: Allowed
- Disclose-recipients: Prohibited
- Original-encoded-information-types: IA5-Text
- Priority: normal
- X400-content-type: P2-1988 ( 22 )
- X400-mts-identifier: [/c=US/admd=TeleMail/prmd=Deloitte/; 06CF43731D8DD0D5-MTAUSCNT1DT]
- X400-originator: mgeissler@deloitte.com
- X400-received: by ans2-pub.dttus.com (Internal Mail Agent-2); Thu, 6 May 1999 13:04:29 -0500
- X400-received: by ans2-pub.dttus.com (Internal Mail Agent-1); Thu, 6 May 1999 13:04:29 -0500
- X400-recipients: non-disclosure;
Subject: RE: Ran SQR in Process sched, It says initiated even when its do
Hi -
You need to let the process scheduler know what your program is doing and pass
it some parameters to update the program status.
In the beginning of the program you need to pass a value to let it know it is
processing and at the end let it know that it has finished.
Something along these lines:
let $prcs_run_status = 'P'
let $prcs_message_parm1 = 'Processing'
do Update-Prcs-Run-Status
and at the end let it know you are done:
let $prcs_run_status = 'S'
let $prcs_message_parm1 = 'Successful'
do Update-Prcs-Run-Status
Hope this helps!
-----Original Message-----
From: dlogiudice@PINE.VPCC.SUNYSB.EDU
Sent: Thursday, May 06, 1999 11:59 AM
To: SQR-USERS@list.iex.net
Subject: Ran SQR in Process sched, It says initiated even when its do
I am getting to the point where I am trying to put some of my SQR in Peoplesoft
to be run off a menu. So I set 1 up and Ran the SQR in Process scheduler, It
says initiated even when its done. I know its done because if I look at the log
is shows
all my counts and cmpleted totals.
But if I look at the job in Process Monitor its still says initiated
any ideas ?