Re: how can we do it?

2019-07-03 Thread Guy Riems
We had a similar requirement and wrote a Health Check that sends an alert (with 
some other additional checking).
If you are interested I would be happy to share it offline.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: how can we do it?

2019-07-03 Thread Binyamin Dissen
Why not a periodic 

   D ,L,CN=(ALL)R

?

Use REXX to parse the result.


On Wed, 3 Jul 2019 08:06:12 -0400 Tony Thigpen  wrote:

:>My boss wants something is doable.
:>
:>He wants:
:>"I want a notification if there is a 'white message' that has stayed on 
:>the console longer than 5 minutes."
:>
:>We had a problem where an unresolved outstanding message was on the 
:>console for a bit because the operator was occupied elsewhere. So, he 
:>wants to know if something has not been corrected within a reasonable 
:>time frame.
:>
:>We don't use a third-party console product because we are currently 
:>happy with sysrexx as our console automation tool.
:>
:>I am not sure were to start with this. Since it has to handle any 
:>outstanding message, it can't be driven by message number (like most 
:>sysrexx stuff) so I need to drive it based on the WTO descriptor code, 
:>but I don't know if that is possible with SysRexx.
:>
:>And, then I somehow need to intercept the "un-stick" DOM macro call.

--
Binyamin Dissen 
http://www.dissensoftware.com

Director, Dissen Software, Bar & Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: how can we do it?

2019-07-03 Thread Lionel B Dyck
If you don't have an automation package then check out www.cbttape.org flie 974 
for TSSO (there are other files but this looks the most up to date)


Lionel B. Dyck <
Website: http://www.lbdsoftware.com

"Worry more about your character than your reputation.  Character is what you 
are, reputation merely what others think you are." - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Steve Horein
Sent: Wednesday, July 3, 2019 8:00 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: how can we do it?

I am lucky to have an automation package to work with, but how about an MPF 
exit?
A quick google search of MPF Exit lead to this page with samples:
http://planetmvs.com/freeware/dampf.html

On Wed, Jul 3, 2019 at 7:06 AM Tony Thigpen  wrote:

> My boss wants something is doable.
>
> He wants:
> "I want a notification if there is a 'white message' that has stayed 
> on the console longer than 5 minutes."
>
> We had a problem where an unresolved outstanding message was on the 
> console for a bit because the operator was occupied elsewhere. So, he 
> wants to know if something has not been corrected within a reasonable 
> time frame.
>
> We don't use a third-party console product because we are currently 
> happy with sysrexx as our console automation tool.
>
> I am not sure were to start with this. Since it has to handle any 
> outstanding message, it can't be driven by message number (like most 
> sysrexx stuff) so I need to drive it based on the WTO descriptor code, 
> but I don't know if that is possible with SysRexx.
>
> And, then I somehow need to intercept the "un-stick" DOM macro call.
>
> --
> Tony Thigpen
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send 
> email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: how can we do it?

2019-07-03 Thread Steve Horein
I am lucky to have an automation package to work with, but how about an MPF
exit?
A quick google search of MPF Exit lead to this page with samples:
http://planetmvs.com/freeware/dampf.html

On Wed, Jul 3, 2019 at 7:06 AM Tony Thigpen  wrote:

> My boss wants something is doable.
>
> He wants:
> "I want a notification if there is a 'white message' that has stayed on
> the console longer than 5 minutes."
>
> We had a problem where an unresolved outstanding message was on the
> console for a bit because the operator was occupied elsewhere. So, he
> wants to know if something has not been corrected within a reasonable
> time frame.
>
> We don't use a third-party console product because we are currently
> happy with sysrexx as our console automation tool.
>
> I am not sure were to start with this. Since it has to handle any
> outstanding message, it can't be driven by message number (like most
> sysrexx stuff) so I need to drive it based on the WTO descriptor code,
> but I don't know if that is possible with SysRexx.
>
> And, then I somehow need to intercept the "un-stick" DOM macro call.
>
> --
> Tony Thigpen
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: how can we do it?

2019-07-03 Thread Ken Bloom
Tony

We have a console automation product that will do that as well as send an email 
alert if the message stays in answered for a period of time. 

Call me

Kenneth A. Bloom
CEO
Avenir Technologies Inc
/d/b/a Visara International
203-984-2235
bl...@visara.com
www.visara.com


> On Jul 3, 2019, at 8:06 AM, Tony Thigpen  wrote:
> 
> My boss wants something is doable.
> 
> He wants:
> "I want a notification if there is a 'white message' that has stayed on the 
> console longer than 5 minutes."
> 
> We had a problem where an unresolved outstanding message was on the console 
> for a bit because the operator was occupied elsewhere. So, he wants to know 
> if something has not been corrected within a reasonable time frame.
> 
> We don't use a third-party console product because we are currently happy 
> with sysrexx as our console automation tool.
> 
> I am not sure were to start with this. Since it has to handle any outstanding 
> message, it can't be driven by message number (like most sysrexx stuff) so I 
> need to drive it based on the WTO descriptor code, but I don't know if that 
> is possible with SysRexx.
> 
> And, then I somehow need to intercept the "un-stick" DOM macro call.
> 
> -- 
> Tony Thigpen
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


how can we do it?

2019-07-03 Thread Tony Thigpen

My boss wants something is doable.

He wants:
"I want a notification if there is a 'white message' that has stayed on 
the console longer than 5 minutes."


We had a problem where an unresolved outstanding message was on the 
console for a bit because the operator was occupied elsewhere. So, he 
wants to know if something has not been corrected within a reasonable 
time frame.


We don't use a third-party console product because we are currently 
happy with sysrexx as our console automation tool.


I am not sure were to start with this. Since it has to handle any 
outstanding message, it can't be driven by message number (like most 
sysrexx stuff) so I need to drive it based on the WTO descriptor code, 
but I don't know if that is possible with SysRexx.


And, then I somehow need to intercept the "un-stick" DOM macro call.

--
Tony Thigpen

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN