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

Can I combine uni-REXX with a compiled language in my application? What application programming interfaces are available? For example, can I share variables between uni-REXX and a compiled language?

0 Answers  


I executed one job and I forget to save the final JCL. But took an XDC from SPOOL. Now I want to recover the JCL from XDC dataset. Is there any process to do this?. (Manually it takes a lot of time). Is there

0 Answers  


I want to remove a duplicates form a given input field using rexx program. please Any one help me out to solve this ... Thanks in Advance.

1 Answers  


I want to code a REXX Program in order to load many tables in a database simultaneously in a batch fashion. Currently batch codes ar available in which only one job is submitted at a time and this loads only one table. My requirement is that many tables should be loaded at a time when one Job is submitted and can this be done using REXX Tool???

1 Answers  


what is uni-rexx?

0 Answers   IBM,






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

2 Answers  


Enlist the features of rexx as a programming language.

0 Answers  


for which platforms is uni-rexx available?

0 Answers   IBM,


why is there no os/2 (ecs) port of oorexx?

0 Answers   IBM,


If I have limited experience with Rexx or it's been a long time since I've used it, what kind of help is available to get me started?

0 Answers  


Can I cleanly uninstall oorexx?

0 Answers   IBM,


I want to set position for a particular text in a certain position in several of my cics maps.Please provide me with a solution. Ex: If "F1-Help" has to be set to pos(4,27) always in all the maps within a PDS.

0 Answers  


Categories