Re: MVS send command in REXX

2018-06-11 Thread Nims,Alva John (Al)
III UF Information Technology East Campus P.O. Box 112050 Gainesville, FL. 32611 (e) ajn...@ufl.edu (p) (352) 273-1298 -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of saurabh khandelwal Sent: Saturday, June 09, 2018 12:27 AM To:

Re: MVS send command in REXX

2018-06-10 Thread saurabh khandelwal
changing user=(AG54) from user(AG54) finally worked for me and now this command performing correctly. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message:

Re: MVS send command in REXX

2018-06-09 Thread ITschak Mugzach
tso and console send commad syntax is different. ITschak בתאריך שבת, 9 ביוני 2018, 16:39, מאת Bill Godfrey ‏: > According to the Knowledge Center link that was given, user(AG54) should > be user=(AG54). > > Bill > > On Sat, 9 Jun 2018 07:27:19 +0300, saurabh khandelwal wrote: > > >Hello, > > >

Re: MVS send command in REXX

2018-06-09 Thread Bill Godfrey
According to the Knowledge Center link that was given, user(AG54) should be user=(AG54). Bill On Sat, 9 Jun 2018 07:27:19 +0300, saurabh khandelwal wrote: >Hello, > >Thanks for reply. > >below command doesn't work. After changing > >mvs "send 'AG54LST JOB "mtxt"' user(AG54) now" > >to > >mvs

Quotes? (was: MVS send command in REXX)

2018-06-09 Thread Paul Gilmartin
On Sat, 9 Jun 2018 06:26:36 +0100, CM Poncelet wrote: >  >... (I am putting everything in quotes to avoid my >email's data being interpreted as commands.) > When does such a problem occur? (Example?) Have you a broken Mail User Agent? > MEMBER NAME  TSOSEND (JCL) >"// ... ...   

Re: MVS send command in REXX

2018-06-08 Thread CM Poncelet
Hello,   Here is a Clist version, invoked in TSO batch. Check it against what you are doing in REXX. (I am putting everything in quotes to avoid my email's data being interpreted as commands.)  MEMBER NAME  TSOSEND (JCL) "// ... ...  " "/*JOBPARM

Re: MVS send command in REXX

2018-06-08 Thread saurabh khandelwal
Hello, Thanks for reply. below command doesn't work. After changing mvs "send 'AG54LST JOB "mtxt"' user(AG54) now" to mvs "send 'AG54LST JOB "mtxt"',user(AG54),now" I stopped getting any notification as i was getting on any system. Is there any other syntax for this command . here mtxt is

Re: MVS send command in REXX

2018-06-08 Thread CM Poncelet
Here is a Clist version, invoked from batch TSO (JCL):   '// ... ...  ' '/*JOBPARM SYSAFF=()  ' '//*    '

Re: MVS send command in REXX

2018-06-08 Thread Paul Gilmartin
On Fri, 8 Jun 2018 11:55:47 -0500, Elardus Engelbrecht wrote: > >>What is in mtxt? You display it with a say statement but didn't include the >>output in your query. Is it pssible that it include an apostrophe/ > >Excellent catch! Thanks! I forgot about that about apostrophe inside a >variable

Re: MVS send command in REXX

2018-06-08 Thread CM Poncelet
Should you not be using TSO SEND?   Here is a Clist version, invoked in batch.    MEMBER NAME  TSOSEND  //  //*  //* NOTE: NO LINE NUMBERS IN COLS 73-80 ALLOWED, ELSE CLIST FAILS!    *  //* ¯   

Re: MVS send command in REXX

2018-06-08 Thread Seymour J Metz
ason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List on behalf of Elardus Engelbrecht Sent: Friday, June 8, 2018 12:55 PM To: IBM-MAIN@listserv.ua.edu Subject: Re: MVS send command in REXX Seymour J Metz wrote: >What is in mtxt? You display it with a say statement but didn't include the

Re: MVS send command in REXX

2018-06-08 Thread Elardus Engelbrecht
Seymour J Metz wrote: >What is in mtxt? You display it with a say statement but didn't include the >output in your query. Is it pssible that it include an apostrophe/ Excellent catch! Thanks! I forgot about that about apostrophe inside a variable inside that line. Really confusing and

Re: MVS send command in REXX

2018-06-08 Thread Seymour J Metz
of saurabh khandelwal Sent: Friday, June 8, 2018 6:36 AM To: IBM-MAIN@listserv.ua.edu Subject: MVS send command in REXX Hello Group, In this below REXX, I want to send message only to operator AG54 but, not sure why this send command sending message to all users in system , not only AG54. I checked

Re: MVS send command in REXX

2018-06-08 Thread Elardus Engelbrecht
saurabh khandelwal wrote: >000120 parse arg mtxt . mtxt How long is that mtxt? If it is too long, the rest of the message command will be trimmed off. >000500 mvs "send 'AG54LST JOB "mtxt"' user(AG54) now" Change above to this (replacing two spaces with two commas): mvs "send 'AG54LST JOB

MVS send command in REXX

2018-06-08 Thread saurabh khandelwal
Hello Group, In this below REXX, I want to send message only to operator AG54 but, not sure why this send command sending message to all users in system , not only AG54. I checked syntax for this send command but result is same, EDIT NETVIEW.CNMCLST(FAIREXX1) - 01.14 **