Re: Notify a user if a job ends with non zero RC

2010-03-22 Thread Howard Brazee
On 18 Mar 2010 08:22:21 -0700, jim.mcalp...@gmail.com (Jim McAlpine) wrote: >There are probably a number of ways to achieve the above but I'm looking for >the best way. Basically if any step in a job ends with a non zero return >code, I want to notify a particular user who will not be the submitt

Re: Notify a user if a job ends with non zero RC

2010-03-22 Thread Brian Westerman
There are several programs that will do most of what what you want on the CBT tape. We have one that we give away with our system automation products called SyzEMAIL, that will send either an email or TSO notify message (or both) with all of the jobs condition codes, or just individual steps. Y

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread carlos roberto visconde
n List [mailto:ibm-m...@bama.ua.edu] On > Behalf Of Ted MacNEIL > Sent: Thursday, March 18, 2010 1:43 PM > To: IBM-MAIN@bama.ua.edu > Subject: Re: Notify a user if a job ends with non zero RC > > >However, any triggering off msgs would depend upon the msgs being > written to

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Barkow, Eileen
MacNEIL Sent: Thursday, March 18, 2010 1:43 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Notify a user if a job ends with non zero RC >However, any triggering off msgs would depend upon the msgs being written to >the console and I do not think that the IEF142I msg containing the condition >c

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Ted MacNEIL
>However, any triggering off msgs would depend upon the msgs being written to >the console and I do not think that the IEF142I msg containing the condition >code could or should be outputted to a systems console. IIRC, and it's been years since I've been involved in automation, you can catch th

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Barkow, Eileen
: Notify a user if a job ends with non zero RC -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Jim McAlpine Sent: Thursday, March 18, 2010 10:22 AM To: IBM-MAIN@bama.ua.edu Subject: Notify a user if a job ends with non zero RC There are probably a

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Thompson, Steve
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Jim McAlpine Sent: Thursday, March 18, 2010 10:22 AM To: IBM-MAIN@bama.ua.edu Subject: Notify a user if a job ends with non zero RC There are probably a number of ways to achieve the above

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Luis Andrade
By the way... If you in z/OS 1.9 or above; If you like programming with REXX; Take a look at the new SDSF interface with REXX... You can, for instance, check your job output hourly, as you would do with SDSF panels and check for results... then inform your users if anything goes wrong... even wi

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Luis Andrade
Nevertheless, as XMITIP is written in REXX you can always enhance the notication with your own code, or include a step to test the completion codes of each step in a job and send different messages to different users depending on the results. see: http://www.mail-archive.com/ibm-main@bama.ua.edu/m

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread McKown, John
> -Original Message- > From: IBM Mainframe Discussion List > [mailto:ibm-m...@bama.ua.edu] On Behalf Of Jim McAlpine > Sent: Thursday, March 18, 2010 10:22 AM > To: IBM-MAIN@bama.ua.edu > Subject: Notify a user if a job ends with non zero RC > > There are prob

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Mark T. Regan, K8MTR
18, 2010 11:21:37 AM Subject: Notify a user if a job ends with non zero RC There are probably a number of ways to achieve the above but I'm looking for the best way.  Basically if any step in a job ends with a non zero return code, I want to notify a particular user who will not be the s

Re: Notify a user if a job ends with non zero RC

2010-03-18 Thread Binyamin Dissen
On Thu, 18 Mar 2010 15:21:37 + Jim McAlpine wrote: :>There are probably a number of ways to achieve the above but I'm looking for :>the best way. Basically if any step in a job ends with a non zero return :>code, I want to notify a particular user who will not be the submitting :>user. I've

Notify a user if a job ends with non zero RC

2010-03-18 Thread Jim McAlpine
There are probably a number of ways to achieve the above but I'm looking for the best way. Basically if any step in a job ends with a non zero return code, I want to notify a particular user who will not be the submitting user. I've done this in the past but I'm looking for the latest tricks to a