Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-05 Thread saurabh khandelwal
Thanks all for helping me . Its working now and able to collected Jobs in PDS members. Regards Saurabh On Wed, Feb 27, 2013 at 8:31 PM, saurabh khandelwal sourabhkhandelwal...@gmail.com wrote: Hello, I am trying to run SDSF rexx to copy SYSOUT into PDS present in Implementing REXX

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Walt Farrell
On Fri, 1 Mar 2013 08:59:58 +0530, saurabh khandelwal sourabhkhandelwal...@gmail.com wrote: Hello Walt, I am running this program under z/OS 1.13 system only. My concern doesn't affect you; the reply was specific to Steve, who is testing with IEBCOPY. Your problem should

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Paul Gilmartin
On Fri, 1 Mar 2013 15:59:40 +0930, Anthony Thompson wrote: I can only echo Shane's reply. I don't know why you are messing around with external utilities when SDSF Rexx provides you with the function you are after. Why re-invent the wheel? ... Of course, non-unique job-names would mean any

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Paul Gilmartin
On Fri, 1 Mar 2013 09:04:46 +0530, saurabh khandelwal wrote: But if I use, PS file, then for every job I will have one dedicated dataset and it will be painful if I have 100+ jobs. Again, I'll recommend UNIX directories. They allow keeping things much better organized -- even a subdirectory

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Farley, Peter x23353
-MAIN@LISTSERV.UA.EDU Subject: Re: SDSF Rexx Issue - to copy SYSOUT into PDS On Fri, 1 Mar 2013 09:04:46 +0530, saurabh khandelwal wrote: But if I use, PS file, then for every job I will have one dedicated dataset and it will be painful if I have 100+ jobs. Again, I'll recommend UNIX directories

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Paul Gilmartin
On Fri, 1 Mar 2013 15:59:40 +0930, Anthony Thompson wrote: I can only echo Shane's reply. I don't know why you are messing around with external utilities when SDSF Rexx provides you with the function you are after. Why re-invent the wheel? I reinvented the wheel because I looked at:

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-03-01 Thread Ted MacNEIL
If you have the free version of PDS86 from CBT or one of the commercial equivalents you could also set the ISPF statistics of the member you add to record when it was added to the PDS(E) and by whom, but that is optional. You could also use the ISPF LM* routines (Library Management) to

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Miklos Szigetvari
[mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Leonardo Vaz Sent: Wednesday, February 27, 2013 12:50 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: SDSF Rexx Issue - to copy SYSOUT into PDS You are executing IEBGENER with parm Parm DDlist, pretty much like in a JCL with the following card: // EXEC PGM

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Shane Ginnane
On Thu, 28 Feb 2013 09:19:33 +0530, saurabh khandelwal wrote: Thanks All, I have used the code provided my IBM in SDSF with REXX manual. Looks like the code is not properly setup and require many modification to make it work. If anybody has used that code

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Stocker, Herman
You may want to take a look at Mark's SDSF@DR program. It sounds like what the OP wanted to do. Mark's page: http://www.mzelden.com/mvsutil.html Regards, Herman Stocker It is impossible to make anything foolproof, because fools are so ingenious. -- Robert Heinlein The sender

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Steve Thompson
From: Walt Farrell walt.farr...@gmail.com Date: 02/28/2013 08:05 AM On Wed, 27 Feb 2013 19:07:47 -0600, Steve Thompson sthomp...@us.ibm.com wrote: Glad it worked for you. I tried it with IEBCOPY and couldn't make it work at all (yes, I compared the example in the REXX book to the info in

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Paul Gilmartin
On Thu, 28 Feb 2013 11:14:29 -0600, Steve Thompson wrote: And I am aware of the APF issue (and why it must be so), so that was what I was waiting for -- if I hit the S047 ABEND, I knew I had a show stopper. The method of invocation that I used works fine: It needn't be so. As evidenced by

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread saurabh khandelwal
Hello Walt, I am running this program under z/OS 1.13 system only. Regards Saurabh On Thu, Feb 28, 2013 at 7:34 PM, Walt Farrell walt.farr...@gmail.comwrote: On Wed, 27 Feb 2013 19:07:47 -0600, Steve Thompson sthomp...@us.ibm.com wrote: Glad it worked for you. I tried it

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread saurabh khandelwal
Hello Herman, I have check this Mark's utility earlier, but this doesn't suit to my requirement because my target is to put Job's output in a single PDS with different members( name can be Job id or Job name). This will be useful for us, while we are installing any product or

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-28 Thread Anthony Thompson
. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of saurabh khandelwal Sent: Friday, 1 March 2013 1:05 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: SDSF Rexx Issue - to copy SYSOUT into PDS Hello Herman, I have

SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread saurabh khandelwal
Hello, I am trying to run SDSF rexx to copy SYSOUT into PDS present in Implementing REXX Support in SDSF manual. I am able to create members( members name starting with Job id) in the PDS. But the data is not getting populated in these members from Job outputs. The issue which I

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread Leonardo Vaz
@LISTSERV.UA.EDU] On Behalf Of saurabh khandelwal Sent: Wednesday, February 27, 2013 10:02 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: SDSF Rexx Issue - to copy SYSOUT into PDS Hello, I am trying to run SDSF rexx to copy SYSOUT into PDS present in Implementing REXX Support in SDSF manual. I

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread Rouse, Willie
-Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Leonardo Vaz Sent: Wednesday, February 27, 2013 12:50 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: SDSF Rexx Issue - to copy SYSOUT into PDS You are executing IEBGENER with parm Parm DDlist, pretty

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread Paul Gilmartin
On Wed, 27 Feb 2013 17:49:37 +, Leonardo Vaz wrote: You are executing IEBGENER with parm Parm DDlist, pretty much like in a JCL with the following card: // EXEC PGM=IEBGENER,PARM=Parm DDlist Actually not entirely like. This calls IEBGENER with R1 pointing to a list of 2 fullwords. The

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread Scott Ford
Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of saurabh khandelwal Sent: Wednesday, February 27, 2013 10:02 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: SDSF Rexx Issue - to copy SYSOUT into PDS Hello, I am trying to run SDSF rexx to copy SYSOUT into PDS present

Re: SDSF Rexx Issue - to copy SYSOUT into PDS

2013-02-27 Thread saurabh khandelwal
, February 27, 2013 12:50 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: SDSF Rexx Issue - to copy SYSOUT into PDS You are executing IEBGENER with parm Parm DDlist, pretty much like in a JCL with the following card: // EXEC PGM=IEBGENER,PARM=Parm DDlist And IEBGENER is giving you a RC=12