Re: How to suppress Message in REXX App (SAMPLE)

2012-06-04 Thread McKown, John
ife and Health Insurance Company.SM > -Original Message- > From: IBM Mainframe Discussion List > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Dana Mitchell > Sent: Monday, June 04, 2012 7:34 AM > To: IBM-MAIN@bama.ua.edu > Subject: Re: How to suppress Message in REXX App

Re: How to suppress Message in REXX App (SAMPLE)

2012-06-04 Thread Dana Mitchell
On Sun, 3 Jun 2012 11:47:23 -0500, Paul Gilmartin wrote: > >Should I infer from this that conversely it runs concurrently >in background and does not tie up the terminal if output is >directed to SYSOUT or ODS? If so the above EXEC needs a >WAIT to guarantee that the output is complete. (Or doe

Re: How to suppress Message in REXX App (SAMPLE)

2012-06-03 Thread Paul Gilmartin
On Sun, 3 Jun 2012 17:06:35 +0200, Giovanni Santuz wrote: > >RD =RANDOM(1,9) >HSMDS = 'TWRK.TEMP.D'!!RD >"HLIST DSNAME('"ODSN"') ODS('"HSMDS"')" >CALL READ_HSMDS > Is RANDOM() the best way to do this, given that there's a 50% chance of collision in 372 tries? Would it be better (and more info

Re: How to suppress Message in REXX App (SAMPLE)

2012-06-03 Thread Giovanni Santuz
Am 03.06.2012 04:10, schrieb Shmuel Metz (Seymour J.): In , on 06/02/2012 at 12:02 PM, Itschak Mugzach said: Did you try REXX OUTTRAP function? OUTTRAP catches PUTLINE and PUTGET, not TPUT. HI Here a sample to Do a HLIST, and process the info in the REXX.Proc Data is written in the STE

Re: How to suppress Message in REXX App

2012-06-03 Thread John Gilmore
On 6/3/12, Giovanni Santuz wrote: > Am 01.06.2012 18:43, schrieb Lizette Koehler: >> Cross Posting to IBM Main and TSO-REXX >> >> >> I have a Rexx process that issues the HLIST command. I have been >> successful >> in trapping the output from the HLIST but have an issue when the message >> >> ARC

Re: How to suppress Message in REXX App

2012-06-03 Thread Giovanni Santuz
Am 01.06.2012 18:43, schrieb Lizette Koehler: Cross Posting to IBM Main and TSO-REXX I have a Rexx process that issues the HLIST command. I have been successful in trapping the output from the HLIST but have an issue when the message ARC0138I is issued. I have tried turning off all of the TS

Re: How to suppress Message in REXX App

2012-06-02 Thread Shmuel Metz (Seymour J.)
In , on 06/01/2012 at 03:14 PM, Skip Robinson said: >TPUT is an SVC that cannot be intercepted by TSO and therefore >cannot be suppressed by TSO. Actually, it can be intercepted, and the TSO Session Manager does intercept it. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO po

Re: How to suppress Message in REXX App

2012-06-02 Thread Shmuel Metz (Seymour J.)
In , on 06/02/2012 at 12:02 PM, Itschak Mugzach said: >Did you try REXX OUTTRAP function? OUTTRAP catches PUTLINE and PUTGET, not TPUT. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see We don't care. We don't have to

Re: How to suppress Message in REXX App

2012-06-02 Thread Shmuel Metz (Seymour J.)
In , on 06/01/2012 at 04:37 PM, Scott Ford said: >TPut will go to sysprint or systsprt No. PUTLINE in batch will go to SYSTSPRT, but not TPUT. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see We don't care. We don't h

Re: How to suppress Message in REXX App

2012-06-02 Thread Itschak Mugzach
You trap the output using a parameter of the HLIST command Did you try REXX OUTTRAP function? ITschak On Fri, Jun 1, 2012 at 7:43 PM, Lizette Koehler wrote: > Cross Posting to IBM Main and TSO-REXX > > > I have a Rexx process that issues the HLIST command. I have been > successful > in trapping

Re: How to suppress Message in REXX App

2012-06-01 Thread Tony Harminc
On 1 June 2012 18:14, Skip Robinson wrote: > TSO PROFILE command controls messages issued via PUTLINE, which invokes > TSO services and is therefore suppressible within TSO. TPUT is an SVC that > cannot be intercepted by TSO and therefore cannot be suppressed by TSO. Uh, not exactly. While TSO do

Re: How to suppress Message in REXX App

2012-06-01 Thread Shmuel Metz (Seymour J.)
In <026801cd4015$ba6e3cd0$2f4ab670$@mindspring.com>, on 06/01/2012 at 09:43 AM, Lizette Koehler said: >Does anyone know if this message can be suppressed from a TSO >session? IF so, suggestions? Run under Session Manager? -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO positio

Re: How to suppress Message in REXX App

2012-06-01 Thread Skip Robinson
Team Paddler SHARE MVS Program Co-Manager 626-302-7535 Office 323-715-0595 Mobile jo.skip.robin...@sce.com From: Scott Ford To: IBM-MAIN@bama.ua.edu Date: 06/01/2012 03:04 PM Subject:Re: How to suppress Message in REXX App Sent by:IBM Mainframe Discussion List Yes

Re: How to suppress Message in REXX App

2012-06-01 Thread Scott Ford
Yes, system Scott ford www.identityforge.com On Jun 1, 2012, at 5:59 PM, Walt Farrell wrote: > On Fri, 1 Jun 2012 16:37:51 -0400, Scott Ford wrote: > >> TPut will go to sysprint or systsprt > > She's concerned about a TSO session, and there it will go to the terminal. > > -- > Walt > > --

Re: How to suppress Message in REXX App

2012-06-01 Thread Walt Farrell
On Fri, 1 Jun 2012 16:37:51 -0400, Scott Ford wrote: >TPut will go to sysprint or systsprt She's concerned about a TSO session, and there it will go to the terminal. -- Walt -- For IBM-MAIN subscribe / signoff / archive acces

Re: How to suppress Message in REXX App

2012-06-01 Thread Scott Ford
the user's session. > > Lizette > > > -Original Message----- >> From: Scott Ford >> Sent: Jun 1, 2012 1:03 PM >> To: IBM-MAIN@bama.ua.edu >> Subject: Re: How to suppress Message in REXX App >> >> Lizette, >> >> Are you trapp

Re: How to suppress Message in REXX App

2012-06-01 Thread Dennis Trojak
Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lizette Koehler Sent: Friday, June 01, 2012 3:16 PM To: IBM-MAIN@bama.ua.edu Subject: Re: How to suppress Message in REXX App Scott Yes the output is going to a outdsn HLIST DSN('"dsnvar"') MCDS ODS('"tmpdsn"&

Re: How to suppress Message in REXX App

2012-06-01 Thread Lizette Koehler
ink the problem as pointed out is a TPUT. Which means I may not be able to suppress it from the user's session. Lizette -Original Message- >From: Scott Ford >Sent: Jun 1, 2012 1:03 PM >To: IBM-MAIN@bama.ua.edu >Subject: Re: How to suppress Message in REXX App >

Re: How to suppress Message in REXX App

2012-06-01 Thread Scott Ford
Lizette, Are you trapping the messages ? Scott ford www.identityforge.com On Jun 1, 2012, at 12:43 PM, Lizette Koehler wrote: > Cross Posting to IBM Main and TSO-REXX > > > I have a Rexx process that issues the HLIST command. I have been successful > in trapping the output from the HLIST bu

Re: How to suppress Message in REXX App

2012-06-01 Thread Ed Gould
Gil: Maybe I am not understanding of your complaint. The ARC message is sent to you as *YOU* requested some function from HSM. HLIST for example is your request to DFHSM to list something (usually a DSN) and DFHSM is responding to your request. So please explain why you are objecting to rece

Re: How to suppress Message in REXX App

2012-06-01 Thread Paul Gilmartin
On Fri, 1 Jun 2012 13:27:54 -0500, McKown, John wrote: >I don't know about that message in particular, but I know that the HSM started >task often issues message via a directed TPUT having an option to deliver it >to the userid which issued the HSM command. Similar to what the z/OS "SEND" >comm

Re: How to suppress Message in REXX App

2012-06-01 Thread Stocker, Herman
Message in REXX App Cross Posting to IBM Main and TSO-REXX I have a Rexx process that issues the HLIST command. I have been successful in trapping the output from the HLIST but have an issue when the message ARC0138I is issued. I have tried turning off all of the TSO PROF functions (MSGID, INTERCOM

Re: How to suppress Message in REXX App

2012-06-01 Thread McKown, John
and The MEGA Life and Health Insurance Company.SM > -Original Message- > From: IBM Mainframe Discussion List > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lizette Koehler > Sent: Friday, June 01, 2012 11:44 AM > To: IBM-MAIN@bama.ua.edu > Subject: How to suppress Messag

How to suppress Message in REXX App

2012-06-01 Thread Lizette Koehler
Cross Posting to IBM Main and TSO-REXX I have a Rexx process that issues the HLIST command. I have been successful in trapping the output from the HLIST but have an issue when the message ARC0138I is issued. I have tried turning off all of the TSO PROF functions (MSGID, INTERCOM, etc) I have t