/* REXX */ 'PIPE SAFE * | STEM MSG.'
TODataset = Word( Msg.3,3 ) mvs "send 'My console name is "TODataset"',CN=CNDVMSTR" exit Problem has been resolved by using sync command with option both. Now, i used CN operand with send command to send message to operator console and now i receive as required. But this message is visible in green color which get disappeared as other message comes on console. But, I would like to have these message in white color ( not sure if we can say as WTO), so that until operator intervention, these message will be on console itself. Can you please suggest. On Thu, Jun 21, 2018 at 2:56 AM, Jesse 1 Robinson <jesse1.robin...@sce.com> wrote: > Two separate issues have been discussed in this thread. One is the use (or > not) of user logs. The other is the use (or not) of TSOE segments. These > two issues are independent. You can have user logs with or without TSOE > segments, and TSOE segments with or without user logs. > > I have not been able to reproduce OP's problem directly with MVS commands. > If I name more than one userid, the message goes to all of them unless (in > our case) there is no associated user log, in which case I get this: > > 16.51.01 X0 se 'test msg from Skip',user=(xxx066, xxx166, > xxx266),logon > > 16.51.01 X0 IKJ591I USER LOG DOES NOT EXIST FOR USER(S) > XXX266 AND THE BROADCAST > 16.51.01 X0 IKJ591I DATA SET CANNOT BE USED, MESSAGE > CANCELLED. > > All three userids are targeted. The first two are successful while the > third fails on missing user log. > > . > . > J.O.Skip Robinson > Southern California Edison Company > Electric Dragon Team Paddler > SHARE MVS Program Co-Manager > 323-715-0595 Mobile > 626-543-6132 Office ⇐=== NEW > robin...@sce.com > > > -----Original Message----- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Seymour J Metz > Sent: Wednesday, June 20, 2018 12:06 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: (External):Re: MVS SEND command Error > > It's related to broadcast because you used the LOGON option of SEND. Did > you do a SYNCH/ Did you try having user logs? See < > https://www.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/ > com.ibm.zos.v2r1.ikjb400/conlogs.htm>. > > -- > Shmuel (Seymour J.) Metz > http://mason.gmu.edu/~smetz3 > > ________________________________________ > From: IBM Mainframe Discussion List <IBM-MAIN@listserv.ua.edu> on behalf > of saurabh khandelwal <venkatkulkarn...@gmail.com> > Sent: Wednesday, June 20, 2018 1:36 PM > To: IBM-MAIN@listserv.ua.edu > Subject: Re: MVS SEND command Error > > yes.. both users have TSO segments and active users. I was unable to > understand how it is related to UADS and broadcast dataset. > > On Wed, Jun 20, 2018 at 7:35 PM, Seymour J Metz <sme...@gmu.edu> wrote: > > > Does AB55 have a TSO segment? > > > > > > -- > > Shmuel (Seymour J.) Metz > > http://mason.gmu.edu/~smetz3 > > > > ________________________________________ > > From: IBM Mainframe Discussion List <IBM-MAIN@listserv.ua.edu> on > > behalf of saurabh khandelwal <sourabhkhandelwal...@gmail.com> > > Sent: Wednesday, June 20, 2018 11:03 AM > > To: IBM-MAIN@listserv.ua.edu > > Subject: Re: MVS SEND command Error > > > > Hello Seymour/ Lizette, > > > > We use RACF in our system . > > > > Below is our definition of IKJTSO. > > > > BROWSE SYS1.DEVL.PARMLIB(IKJTSODV) - 01.02 > > > > LOGNAME(*) /* */ + > > > > BROADCAST (DATASET(SYS2.DEVL.BRODCAST)) > > > > SEND /* SEND COMMAND DEFAULTS */ + > > > > OPERSEND(ON) /* */ + > > > > USERSEND(ON) /* */ + > > > > SAVE(ON) /* */ + > > > > CHKBROD(OFF) /* */ + > > > > LOGNAME(*) /* */ + > > > > BROADCAST (DATASET(SYS2.DEVL.BRODCAST)) > > > > ALLOCATE /* ALLOCATE COMMAND DEFAULT */ + > > > > DEFAULT(OLD) /* */ > > > > TRANSREC /* ALLOCATE COMMAND DEFAULT */ > > > > NODESMF((NODENAME,SMF)) /*ALLOCATE COMMAND DEFAULT*/ + > > > > CIPHER(YES) /* */ + > > > > SPOOLCL(B) /* */ + > > > > OUTWARN(50000,15000) /* */ + > > > > OUTLIM(5000000) /* */ + > > > > VIO(SYSALLDA) /* */ + > > > > LOGSEL(LOG) /* */ + > > > > LOGNAME(MISC) /* */ + > > > > DAPREFIX(TUPREFIX) /* */ + > > > > USRCTL(NAMES.TEXT) /* */ + > > > > SYSOUT(*) /* */ > > > > > > > > Can you please tell me, what kind of changes do we have to make to > > solve this issue in our IKJTSO member. > > > > > > > > > > On Tue, Jun 19, 2018 at 10:39 PM, Seymour J Metz <sme...@gmu.edu> wrote: > > > > > Are you using UADS or SAF? > > > > > > > > > -- > > > Shmuel (Seymour J.) Metz > > > http://mason.gmu.edu/~smetz3 > > > > > > ________________________________________ > > > From: IBM Mainframe Discussion List <IBM-MAIN@listserv.ua.edu> on > > > behalf of saurabh khandelwal <sourabhkhandelwal...@gmail.com> > > > Sent: Tuesday, June 19, 2018 3:17 PM > > > To: IBM-MAIN@listserv.ua.edu > > > Subject: MVS SEND command Error > > > > > > Hello Group, > > > > > > During execution of rexx, I am getting little weird output and not > > > sure > > the > > > relationship between them . > > > > > > > > > /* REXX */ > > > > > > 'PIPE SAFE * | STEM MSG.' > > > > > > > > > > > > TODataset = Word( Msg.3,3 ) > > > > > > mvs "send 'My console name is "TODataset"',user=(AB54,AB55),LOGON > > > > > > exit > > > > > > > > > > > > I am getting below error. > > > > > > > > > > > > IKJ144I UNDEFINED USERID(S) AB55 > > > > > > IKJ144I > > > > > > and this explain that broadcast and uads are not matching. I dont > > > understand meaning of this error and how sync uads command will help > > > to solve this issue. > > > > > > can anybody guide me how this send command works when we have > > > multiple users in list to receive those messages. > > > > > > One more thing I noticed that, whichever user id I put it first in > > > the > > send > > > command ex : user=(AB54,AB55) , AB54 . This user will get notified > > > but for rest of the users, I get undefined error. > > > > > > These all are working RACF users. I am not sure, why I am getting > > > this issue. > > > > -- > > Thanks & Regards > > Saurabh Khandelwal > > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN > -- Thanks & Regards Saurabh Khandelwal ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN