[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 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 ?