How do I access data held on the JES spool?

Answers were Sorted based on User's Feedback



How do I access data held on the JES spool?..

Answer / ed

Use the new JES/SDSF interface:

/* REXX */
IsfRC = isfcalls( "ON" )
if IsfRC <> 0
then do
say "RC" IsfRC "returned from isfcalls( ON )"
exit IsfRC
end
isfprefix = '*'
isfowner = 'BCA0I53'
isfcols = 'jobid tgnum tgpct pname'
isfsort = 'tgnum d'
address SDSF "ISFEXEC ST (ALTERNATE DELAYED"
say rc isfmsg
say isfmsg2.0
say isfmsg2.1
say isfmsg2.2
say isfmsg2.3
say isfmsg2.4
say isfmsg2.5
say isfrows 'rows returned from SDSF STATUS'
SAY isfcols
do i = 1 to 10
say i '-' jname.i'/'jobid.i tgnum.i tgpct.i pname.i
end
IsfRC = isfcalls( "OFF" )
exit

Is This Answer Correct ?    5 Yes 0 No

How do I access data held on the JES spool?..

Answer / rainer bartosch

Held output (JES2 or JES3) can be captured by outtrapping
the output of the following command

"OUTPUT jobname PRINT(*) KEEP".

Use command HELP OUTPUT for more information.

Furthermore there are output tools you can buy like SDSF,
IOF, (E)JES, etc. But not all of these have got a rexx
interface.

Is This Answer Correct ?    2 Yes 1 No

How do I access data held on the JES spool?..

Answer / shakila vinayagam

JES3 sites can extract data off of the JES3 spool using E-
JES.

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More REXX Interview Questions

is oorexx compatible with rexx?

0 Answers   IBM,


What do unusual return codes such as -3 and 0196 mean?

2 Answers  


what is uni-rexx?

0 Answers   IBM,


is there an aix version of oorexx?

0 Answers   IBM,


can oorexx run ibm object rexx programs?

0 Answers   IBM,






Suppose if there are a set of statements and each has a word “value” in it, if I want to display all these statements so that the word “value” is aligned, then how do I code this in rexx?

0 Answers  


I have one input file and some 40 tables, I want to read input file and compare the input file value with the table value if it is present then we have to update with new value, this should be repeated for all 40 tables and we are reading only one input file, for this is there any REXX program or job or routine to accomplish above requirement. components of the requirements; 1. One input file 2. 40 DB2 tables 3. we have to read from the input file and compare with table value, if present then update with new value (this should be recurssive for all 40 tables for every record of input file). 4. quick help is appreciated.

0 Answers  


is oorexx compatible with ibm object rexx?

0 Answers   IBM,


what would I use uni-rexx for?

0 Answers   IBM,


What is the difference between ooRexx and IBM's Object REXX for Windows?

0 Answers  


What is the use of uni-rexx?

0 Answers  


What are the various error conditions seen in rexx?

0 Answers  


Categories