Re: Get JES[2|3] Output from a job with REXX

2012-05-10 Thread Elardus Engelbrecht
Uwe Oswald wrote:

... since I need a [ REXX - my insertion ... ] solution which is independent 
of JESx and SDFS, IOF, EJES 

Independent? AFAIK in REXX, you need to find out in what environment, what 
JESx, etc, you are running, then you need to call from REXX something 
externally using SAPI to get your output. 

Perhaps you could look at Shmuel's answer he kindly provided to your question.

Look in JES Application Programming. Hopefully there is something useful there.

Or ...

look at SDSF's REXX. (System REXX) There are documented sample REXX programs 
where you use REXX with calls to SDSF to extract outputs from jobs. Look in 
'SDSF Operation and Customization' book.

Groete / Greetings
Elardus Engelbrecht

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Get JES[2|3] Output from a job with REXX

2012-05-09 Thread Shmuel Metz (Seymour J.)
In
CAHtJz9KzdR7+oFtC0TH6Q8TUh9fo=WH5X0=auex7xysab+n...@mail.gmail.com,
on 05/09/2012
   at 11:56 AM, Wayne Bickerdike wayn...@gmail.com said:

How about the old OUTPUT command.

The OP asked for complete job output. The TSO OUTPUT command won't
give him that unless some fairly stringent conditions are met.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Get JES[2|3] Output from a job with REXX

2012-05-09 Thread Shmuel Metz (Seymour J.)
In
8a81d0a4c19b63498a8ef2105fe185364bc63...@dc01.zit-consulting.local,
on 05/08/2012
   at 12:28 PM, Uwe Oswald uwe.osw...@zit-consulting.com said:

after asked Google for several hours but haven't found anything
really useful. Is it possible to use REXX to get a complete (!) job
output incl. SYSPRINT and whatever DD card was used in the JCL?

No. You have to use an external facility. If you don't like, e.g.,
EJES, IOF, SDSF, you could write your own interface in Assembler.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Get JES[2|3] Output from a job with REXX

2012-05-08 Thread Uwe Oswald
Hi,

after asked Google for several hours but haven't found anything really useful. 
Is it possible to use REXX to get a complete (!) job output incl. SYSPRINT and 
whatever DD card was used in the JCL? I'm not talking about a SDSF REXX since I 
need a solution which is independent of JESx and SDFS, IOF, EJES 

I know the FTP  JESx solution but I would like to use REXX.

Hopfully someone have a hint or an example for me.

Thank you in advance.

Regards from Germany,
Uwe


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Get JES[2|3] Output from a job with REXX

2012-05-08 Thread Walter Marguccio
 I know the FTP  JESx solution but I would like to use REXX.

Uwe,

would SDSFEXT at http://www.lbdsoftware.com/ help ?

Walter Marguccio
z/OS Systems Programmer
BELENUS LOB Informatic GmbH
Munich - Germany

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: Get JES[2|3] Output from a job with REXX

2012-05-08 Thread Wayne Bickerdike
How about the old OUTPUT command.

Using the STATUS command you can trap the jobname and number.

OUT command is ancient but still works.

Output is written to userid.OUTLIST by default.

Example:

/* REXX */
ADDRESS TSO
OUT JOBNAME(J0063459)   PR(J0063459) HO K 

HOld Keep to leave the job on the queue while you experiment...

On Tue, May 8, 2012 at 10:28 PM, Uwe Oswald
uwe.osw...@zit-consulting.com wrote:
 Hi,

 after asked Google for several hours but haven't found anything really 
 useful. Is it possible to use REXX to get a complete (!) job output incl. 
 SYSPRINT and whatever DD card was used in the JCL? I'm not talking about a 
 SDSF REXX since I need a solution which is independent of JESx and SDFS, IOF, 
 EJES 

 I know the FTP  JESx solution but I would like to use REXX.

 Hopfully someone have a hint or an example for me.

 Thank you in advance.

 Regards from Germany,
 Uwe


 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN



-- 
Wayne V. Bickerdike

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN