Re: Auto Reply on SDSF Console

2020-12-12 Thread saurabh khandelwal
Dear All, Thank you for your response.Problem has been resolved by using below code If Strip(comp_vol) = TOvolume Then Do "MVS R "MsgID",NO" End Really sorry for delay in response as i was not well so couldnt able to reply you on time. Thank you once again. On Sat, Dec 12, 2020 at 8:19 AM

Re: Auto Reply on SDSF Console

2020-12-11 Thread Brian Westerman
Using SyzMPF/z you would only need to code 3 lines in the script for message IEF455D: IF WORD 02 = SP5145 | SP5146 | SP5147 | SP5149 Reply ,NO ENDIF We count the words of a message starting with zero as the messageid and (in this case) the message itself is: IEF455D MOUNT ser ON dev FOR

Re: Auto Reply on SDSF Console

2020-12-01 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 23:21, Steve Horein wrote: > This guy gets it - "TOKEN" is useful, so long as the vendor doesn't change > the message layout. You say that, but wait until someone runs a job whose name includes any of those volser values, and needs some other volume mounted. Running a

Re: Auto Reply on SDSF Console

2020-11-30 Thread Brian Westerman
Using SyzMPF/z you would only need to code 3 lines in the script for message IEF455D: IF WORD 02 = SP5145 | SP5146 | SP5147 | SP5149 Reply ,NO ENDIF We count the words of a message starting with zero as the messageid and (in this case) the message itself is: IEF455D MOUNT ser ON dev FOR

Re: Auto Reply on SDSF Console

2020-11-30 Thread Steve Horein
he MAT, there is no need for a rexx!!! > > Hth > Tony > > > -Original Message- > From: IBM Mainframe Discussion List On Behalf > Of saurabh khandelwal > Sent: Monday, November 30, 2020 3:15 AM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Auto R

Re: Auto Reply on SDSF Console

2020-11-30 Thread Cieri, Anthony
IBM-MAIN@LISTSERV.UA.EDU Subject: Auto Reply on SDSF Console [[ SEI WARNING *** This email was sent from an external source. Do not open attachments or click on links from unknown or suspicious senders. *** ]] Dear Group , We have requirement to automate below manual reply comes in console ev

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 14:42, Barkow, Eileen wrote: > All I know is that in the past I was not able to use the STRIP function > in NETVIEW - I remember researching the issue at the time and > comparing TSO REXX to NETVIEW REXX. Even if STRIP worked in native > NETVIEW, it did not work with

Re: Auto Reply on SDSF Console

2020-11-30 Thread Barkow, Eileen
Discussion List On Behalf Of Seymour J Metz Sent: Monday, November 30, 2020 9:36 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auto Reply on SDSF Console That appears to refer to native NetView EXECs, not to REXX NetView EXECs. -- Shmuel (Seymour J.) Metz https://gcc02

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 14:35, Seymour J Metz wrote: > That appears to refer to native NetView EXECs, not to REXX NetView EXECs. No, it's describing the Message Automation Table syntax, where one tells netview how to match messages it might see, and for selected messages invoke specific

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 14:30, Barkow, Eileen wrote: > APAR Identifier .. OA36757 Last Changed 11/09/02 > STRIP FUNCTION TO STRIP OFF LEADING AND TRAILING BLANKS This isn't a Netview REXX issue. It's describing use in a message automation table, in the EXEC command that

Re: Auto Reply on SDSF Console

2020-11-30 Thread Seymour J Metz
...@listserv.ua.edu] Sent: Monday, November 30, 2020 9:30 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auto Reply on SDSF Console APAR Identifier .. OA36757 Last Changed 11/09/02 STRIP FUNCTION TO STRIP OFF LEADING AND TRAILING BLANKS FROM A VARIABLE VALUE Symptom .. NF

Re: Auto Reply on SDSF Console

2020-11-30 Thread Barkow, Eileen
the REXX STRIP() function and execute the desired command. MESSAGE TO SUBMITTER: -Original Message- From: IBM Mainframe Discussion List On Behalf Of Jeremy Nicoll Sent: Monday, November 30, 2020 9:15 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auto Reply on SDSF Console On Mon, 30

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 13:57, Seymour J Metz wrote: > Where and how is the code failing? [snip] Sorry to reply to this post, but I've deleted the OP's question. But looking at the part you included at the foot of your mail... > 'PIPE SAFE * | STEM MSG.' > > TOvolume = Word( Msg,4 ) >

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 14:00, Barkow, Eileen wrote: > Sorry about that. I see that STRIP is available in NETVIEW REXX now. it > was not a few releases ago when I tried to use it. I have a handful of copies of old netview execs here. I'm looking now at one I wrote in 1996 and it uses strip().

Re: Auto Reply on SDSF Console

2020-11-30 Thread Barkow, Eileen
: Re: Auto Reply on SDSF Console Where is that documented? As far as I can tell Netview doesn't have its own REXX interpreter, but rather uses TSO/E REXX and the REXX compiler product. -- Shmuel (Seymour J.) Metz https://gcc02.safelinks.protection.outlook.com/?url=http:%2F%2Fmason.gmu.edu%2F

Re: Auto Reply on SDSF Console

2020-11-30 Thread Seymour J Metz
[sourabhkhandelwal...@gmail.com] Sent: Monday, November 30, 2020 3:15 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Auto Reply on SDSF Console Dear Group , We have requirement to automate below manual reply comes in console every time, when we don’t find volume in our system and the standard reply

Re: Auto Reply on SDSF Console

2020-11-30 Thread Seymour J Metz
-MAIN@LISTSERV.UA.EDU] on behalf of Barkow, Eileen [02bc504b1642-dmarc-requ...@listserv.ua.edu] Sent: Monday, November 30, 2020 7:42 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auto Reply on SDSF Console STRIP is not allowed in NETVIEW REXX You can just do something like this: V = SUBSTR(MSGVAR

Re: Auto Reply on SDSF Console

2020-11-30 Thread Jeremy Nicoll
On Mon, 30 Nov 2020, at 12:42, Barkow, Eileen wrote: > STRIP is not allowed in NETVIEW REXX Why do you say that? -- Jeremy Nicoll - my opinions are my own. -- For IBM-MAIN subscribe / signoff / archive access instructions,

Re: Auto Reply on SDSF Console

2020-11-30 Thread Barkow, Eileen
AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auto Reply on SDSF Console See SYS1.PARMLIB(AUTORxx) *| **Itschak Mugzach | Director | SecuriTeam Software **|** IronSphere Platform* *|* *Information Security Continuous Monitoring for Z/OS, zLinux and IBM I **| * *|* *Email**: i_mugz

Re: Auto Reply on SDSF Console

2020-11-30 Thread ITschak Mugzach
See SYS1.PARMLIB(AUTORxx) ITschak Mugzach *|** IronSphere Platform* *|* *Information Security Continuous Monitoring for z/OS, x/Linux & IBM I **| z/VM coming soon * On Mon, Nov 30, 2020 at 10:39 AM Itschak Mugzach wrote: > See SYS1.PARMLIB(AUTORxx) > > *| **Itschak Mugzach | Director |

Re: Auto Reply on SDSF Console

2020-11-30 Thread Itschak Mugzach
See SYS1.PARMLIB(AUTORxx) *| **Itschak Mugzach | Director | SecuriTeam Software **|** IronSphere Platform* *|* *Information Security Continuous Monitoring for Z/OS, zLinux and IBM I **| * *|* *Email**: i_mugz...@securiteam.co.il **|* *Mob**: +972 522 986404 **|* *Skype**: ItschakMugzach **|*

Auto Reply on SDSF Console

2020-11-30 Thread saurabh khandelwal
Dear Group , We have requirement to automate below manual reply comes in console every time, when we don’t find volume in our system and the standard reply to these message is *Reply id, NO.* 10.14.03 JOB09020 *29 *IEF455D* MOUNT *SP5145* ON 0FAA FOR CASPLPRO SARBCH OR REPLY 'NO'l In this