IBM z/OS Connector is a plugin which lets you connect your Jenkins to z/OS. Plugin Information View IBM z/OS Connector on the plugin site for more information. Older versions of this plugin may not be safe to use. Please review the following warnings before using an older version:
About
This plugin provides its functions via FTP connection to IBM z/OS LPAR. You can configure your SCLM project on z/OS and then check for the changes via Jenkins.
Features include:
- Submission of user JCL job (with optional log collected upon finish)
- Introduction of SCLM as SCM for your projects allowing to checkout SCLM changes
- The ability to build SCLM projects currently can be performed only via 'Submit zOS Job' build action
Version differences
Kindly back up your JCL texts before upgrading to version 2.0.0.
The 2.0 release uses text files instead of plaintext input, so old jobs will become obsolete.
Configuration
JESINTERFACELEVEL differences
Job Name must be configured accordingly to your FTP server configuration:
- If JESINTERFACELEVEL=1 is configured, only a job named USERIDx (USERID - your z/OS user ID, x - strictly 1 character) can be processed correctly (when you are waiting for the job to end).
- If JESINTERFACELEVEL=2 is configured, no additional considerations are required.
Change log
Version 2.3.2
Fix NPE if FTP failed to list files (closed socket, etc.)
Version 2.3.1
Regression from 2.3.0: JESINTERFACELEVEL=2 had problems with job listing and didn't check for RC (JENKINS-57549)
Version 2.3.0
Fix JESINTERFACELEVEL=1 inconsistencies (JENKINS-56976)
Don't do too many reconnects (regression from 2.2.0)
Plugin can now handle RC in JESINTERFACELEVEL=1 (but you need to check that correct level is used in Jenkins job config)
Version 2.2.0
Logout of the FTP server as soon as single request is performed.
This will result in increased number of connect → login → logout → disconnect sequences, but should also make plugin more stable.
Version 2.1.0
Environment variables are once again expanded before job submission (JENKINS-55609)
Version 2.0.1
Fix false positive error message if not waiting on job completion (JENKINS-54574)
Version 2.0.0
Use credentials instead of username-password pair
Use text file with JCL code instead of plaintext field (if you need to track SCLM in the same job - consider using Multiple SCMs plugin)
Version 1.2.6.1
Option to print JES job log
Version 1.2.6
Update failure logic for slow JES initiators
Version 1.2.5
Use Jenkins 2+
Add Pipeline support (kudo's to Unknown User (robert_obuch)) (JENKINS-44974)
Version 1.2.4.1
Add notification about incompatibility since 1.2.4.
Version 1.2.4
Provide different messages into the build log based on the job completion code (JENKINS-31837)
Version 1.2.3
JESINTERFACELEVEL=1 output changes and configuration corrections.
Version 1.2.2
JESINTERFACELEVEL=1 support.
Version 1.2.1
- Dummy release
Version 1.2.0.2
Add initial wait before listing jobs in JES (JENKINS-31757)
Version 1.2.0.1
Add error message if job is not listed while waiting for its execution to end (possible problem with JESINTERFACELEVEL=1).
Version 1.2.0
Add JobName to output log file name. Change log file naming convention.
Version 1.1.1
Add environment variables expansion for "Submit z/OS job" build step. Add loggers.
Version 1.1.0
Add MaxCC papameter to 'Submit z/OS job' build step (JENKINS-29214)
Version 1.0.4
Add support for 'RC unknown'.
Version 1.0.3
Fix for JENKINS-29173.
73 Comments
Unknown User (kshiv)
Hello, I need to build job name dynamically based on Jenkins logged in user. ${BUILD_USER_ID} from build user var plug-in substitutes correct username as job name in JCL, however in spool it says job name XXXXX is not a valid job as its character are not alphanumerical, where XXXXX being actual user name from Jenkins which is alpha-numeral. Has anyone tried this before, is this even a correct approach. Appreciate any suggestions.
Unknown User (candiduslynx)
Kindly check that what is used is in upper-case.
Additionally, you can open an issue for the plugin and contact me for the debugging.
Unknown User (craigcockburn)
We are experiencing issues where for some reason the job can't be found in the JES log. However the job is visable when logged into TSO
Example -
ERROR: Job [JOB63581] cannot be found in JES
Job [JOB63581] processing failed. Reason: [JOB_NOT_FOUND_IN_JES]
ERROR: z/OS job failed with CC JOB_NOT_FOUND_IN_JES
From TSO -
Any pointers on what the issue could be ?
Unknown User (candiduslynx)
Check JESINTERFACELEVEL setting.
Unknown User (craigcockburn)
The JESINTERFACELEVEL seems to be OK as we have 7 jobs that run OK and then on the 8th we get the above failure
Unknown User (candiduslynx)
Set the logging for the plugin, especially, ZFTPConnector class. And JIRA issue would be nice.
Note: this log will also log your creds - cut them out!
Unknown User (ruchir)
Is there any plugin for Mainframe Deployment through Jenkins? Can this plugin be used for deployment to Mainframe. I see this plugin (Z/OS connector plugin) handles Build and Test but no to the Deployment. Please provide comment/suggestion.
Unknown User (ruchir)
Is there any plugin for Mainframe Deployment through Jenkins? Can this plugin be used for deployment to Mainframe. I see this plugin (Z/OS connector plugin) handles Build and Test but no to the Deployment. Please provide comment/suggestion.
Unknown User (candiduslynx)
No, no such functionality is supported currently.
You can try using this + ftp upload to mimic such behaviour.
Unknown User (ruchir)
Thanks Alexander for quick response. Can you suggest any plugin for that? I tried FTP=Publisher and Publish Over, both don't support upload to Mainframe.
Unknown User (scottrubino)
Hello Alexander,
I'm running a 13 step job using the z/os plugin and I'm getting this error
Set the logging for the plugin, especially, ZFTPConnector class. And JIRA issue would be nice.
Note: this log will also log your creds - cut them out!
Unknown User (candiduslynx)
See the Logging#Linux
Unknown User (scottrubino)
Hello Alexander,
Here is what was in the log
Unknown User (candiduslynx)
Hi Scott,
I've just sent you a reply e-mail.
Unknown User (barabash)
Hello, I'm trying this plugin to run simple jcl file from Windows-OS to Mainframe. I have set up setting like on the image:
but when I run Jenkins it gives me IO_Error like this:
What should I do to solve this problem?
Unknown User (candiduslynx)
Hello Vladik,
The path to JCL is the relative path to the job workspace.
Unknown User (barabash)
So, I put my jcl-file to the Jenkins workspace which I can see in the Jenkins report, like this:
But I still have the same problem - IO_Error.
What am I doing wrong?
Unknown User (candiduslynx)
Let's say that you've put your file in the root of the workspace. Then you need to simply set the path to JCL as JUST the name of the file (job workspace is automatically appended before the path you specify).
If you have a directory inside workspace and the file is in that directory - specify the path to file including this directory - just like you would've done if you were viewing the workspace directory in terminal and specified the path relative to your position.
Unknown User (barabash)
So, I put this file in the right place, in this directory: C:\Program Files (x86)\Jenkins\workspace\RunningJCL and my relative path looks like just name of the file:
Anyway, I have tried previous version of your plugin and just write my jcl-code instead of file name. And Jenkins has given me the same error. So, I do not think that the problem is in the file path.
Could it be that the problem is different?
Unknown User (candiduslynx)
It might be related to RACF config for FTP JES usage (you would need to be able to submit jobs via FTP. I'd dtart by checking that you can do this manually from terminal).
Unknown User (barabash)
I have tried run JCl just by using ftp through cmd. And it has worked well, job was submitted. So, maybe I should change some settings in the Jenkins, shouldn't I?
Unknown User (barabash)
Also I found jenkins log-file, you can see its messages below:
Maybe it will be useful
Unknown User (barabash)
Wow this site works weird, all my images which I uploaded here from one file, now look like last version of this file O_o
Sorry for that.
Unknown User (candiduslynx)
Check the notice about jesinterfacelevel in the description. You have to set this option and use proper job name.
Unknown User (barabash)
Hello again. I think I use right job name.
//USER**A JOB ,
// MSGCLASS=H,MSGLEVEL=(1,1),TIME=(,4),REGION=64M,NOTIFY=USER**
These are first two strings in my jcl file. So as you can see job has the name like my userID plus one character. And this configuration don't work.
I have tried different option in check-box, but it also hasn't worked.
Unknown User (candiduslynx)
IDK, you might need to check the ftp submission from terminal on the cI machine. Otherwise it seems strange.
Unknown User (barabash)
Ok, thx, I will try to find decision.
Unknown User (carlos_vicari)
Hi Folks,
Does that Plugin work fine with Jenkins Pipeline as well?
If YES, somebody could send me a sample/example?
Tks in advance!
Unknown User (gsturge)
I wish you kept the JCL text box with your enhancement. I have no problem with the file, but this makes it very hard to change the 50+ jobs I have using this plugin.
Unknown User (candiduslynx)
I had experience with lots of steps with ~300 lines of JCL each, so I decided to make config page cleaner and enforce proper configuration practices.
Sorry that it made you revisit such lot of jobs. You might want to try autogeneration + DSL (groovy?) and pipelines with the new version, I think.
Unknown User (skiran12)
When I give the JCL in PDS in the Job, Though. Its not working. Please let me know if we need to give the Job as text file and if yes where should I place the file. Below is the error im getting.
Building remotely on docker-140d08474ab63 on BuildSwarm (docker-slave) in workspace /home/jenkins/workspace/IBM Zos conn FTP: connected to IP address Job [] processing failed. Reason: [IO_ERROR] ERROR: z/OS job failed with CC 0000 Finished: FAILURE
Unknown User (skiran12)
How to place the JCL in the Jenkins work space whose path needs to be given in jobfile of the 'submit z/os job'
Unknown User (kbharath)
Hello,
When I use the following script
step([$class: 'ZOSJobSubmitter', JESINTERFACELEVEL1: false, MaxCC: '0004', credentialsId: '**********', deleteJobFromSpool: true, jobFile: 'PKG.txt', jobLogToConsole: false, port: 21, server:****, wait: true, waitTime: 0])
it gives the me below error
Please can you suggest what may have gone wrong
Unknown User (candiduslynx)
Check credentials and try connecting to your LPAR from console on ci machine.
Unknown User (kbharath)
Thanks! I will try doing that and let you know
Unknown User (kbharath)
we are able to use curl command and download mainframe files onto jenkins workspace but still facing below
It looks like it established a connection but job processing failed
Unknown User (candiduslynx)
First and foremost, you need to UPLOAD files to LPAR in order to submit job.
Secondly, use
ftp
command instead ofcurl
. Try submitting the job from some file in workspace manually (you can find a lot of instructions how to submit job to z/OS via FTP).Unknown User (174shalini)
Hi , I have installed this plugin on Jenkins. Is there any document, which can help me to start working on it?
Unknown User (candiduslynx)
Hi Shalini,
I tried my best to make the 'Submit z/OS Job' build step and SCLM CVM adapter as simple as possible. IDK if any additional info apart from the one present in wiki could be required for most cases.
Unknown User (174shalini)
Hi Alexander,
I am getting build log as below
although my job is getting completed successfully. Is there a way to correct the statement
Unknown User (candiduslynx)
Can you share the config you're using?
Also, could you reproduce and collect logs for
org.jenkinsci.plugins.IBM_zOS_Connector
Unknown User (174shalini)
Hi Alexander,
Attached are the config and log file.
Unknown User (candiduslynx)
In your run (from where the log is) did you see 'processing failed'?
Unknown User (174shalini)
Below is the complete log from " jenkins.err " file for the jobs submitted today:
Nov 12, 2018 12:42:08 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZOSJobSubmitter perform
INFO: Test 23: will expand variables
Nov 12, 2018 12:42:08 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 23: Created ZFTPConnector
Nov 12, 2018 12:42:08 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 23: FTP: connected to 10.108.92.20:21
Nov 12, 2018 12:42:10 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 23: Submitted job [JOB04903]
Nov 12, 2018 12:42:10 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZOSJobSubmitter perform
INFO: Job [JOB04903] processing finished.
Nov 12, 2018 12:42:10 AM hudson.model.Run execute
INFO: Test #23 main build action completed: SUCCESS
Nov 12, 2018 12:42:12 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZOSJobSubmitter perform
INFO: Test 24: will expand variables
Nov 12, 2018 12:42:12 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 24: Created ZFTPConnector
Nov 12, 2018 12:42:12 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 24: FTP: connected to 10.108.92.20:21
Nov 12, 2018 12:42:14 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZFTPConnector log
INFO: Test 24: Submitted job [JOB04904]
Nov 12, 2018 12:42:14 AM org.jenkinsci.plugins.IBM_zOS_Connector.ZOSJobSubmitter perform
INFO: Job [JOB04904] processing finished.
Nov 12, 2018 12:42:14 AM hudson.model.Run execute
INFO: Test #24 main build action completed: SUCCESS
There is no 'processing failed' message. i could not find the same in "jenkins.out" file. Let me know if i need to check the logs in a different file.
Unknown User (candiduslynx)
I have created JENKINS-54574 for this. Is fixed in version 2.0.1.
Basically, it was caused by you not using 'wait for completion'.
Unknown User (174shalini)
Thank you , Alexander.
Unknown User (markanthony_v)
Hello Alexander,
Can interpolation of a parameter be done in the new JCL text file?
I tried using "${PARM}" in the JCL text file but it is not working. Please advise.
Thank you,
MArk
Unknown User (candiduslynx)
No, not really. Only file name itself will be expanded.
Unknown User (markanthony_v)
Thanks for confirming Alexander.
Unknown User (dka)
Hi, We have submitted a job from Jenkins master to Z/OS. A simple JCL routine. Its getting compile successfully but on the jobs console log we are getting following error:
FTP: connected to x.x.x.x:21
Submitted job [JOB07200]
ERROR: Could not connect to server.
FTP: connected to x.x.x.x:21
ERROR: Could not connect to server.
Job [JOB07200] processing failed. Reason: [FETCH_LOG_ERROR_LOGIN]
ERROR: z/OS job failed with CC FETCH_LOG_ERROR_LOGIN
Finished: FAILURE
I've replaced machine IP with X for security purpose.
Unknown User (candiduslynx)
Try new 2.2.0 version - it has updated connection logic.
Unknown User (dka)
Hi, we tried with version 2.2.0 and this time it gave following error.
Unknown User (candiduslynx)
now it seems as if the job hasn't finished yet. (check timeout settings, you can set wait time to 0 to wait forever)
Unknown User (dka)
Job completed successfuly on Z/OS. we set timeout to 0; but this even did not work. Each time Jenkins tried to made FTP connection. I think something need to be checked at code level.
Unknown User (candiduslynx)
reconnects are expected with the latest version.
As for the timeout - need more stuff to investigate, fell free to send me e-mail.
Unknown User (johnanu)
Hi, I'm trying to run simple jcl file using this plugin My setup is as follows
the console output and log I get is as follows
Unknown User (candiduslynx)
Are you really not curious if the credentials you provided are correct? Why?
Unknown User (johnanu)
I did double check the credentials and verified them with other FTP submit application and they work.
Unknown User (candiduslynx)
Add ticket with problem. Attach all required logs, send me e-mail to investigate this further.
Unknown User (machn1k)
Are there any future plans to support plain text input again?
The 'version differences' states that old jobs with plain text input will become obsolete, though, re-configuring many plain text JCL(s) to version 2.0.0 is not feasible. Have any considerations been made in this area?
Unknown User (candiduslynx)
No, not planning to revert
Unknown User (ssekhar)
Hi,
We tried with Jenkins version 2.167 and IBM Z/OS Connector version 2.2.0, I am facing below error as:
===============================================================
I have done the configurations as given below:
Jenkins workspace directory in Mainframe:
Jenkins Agent
========
zOS Agent Remote root directory : /shared_automount/autousers/srs0168/workspace. Under this workspace - test1
zOS job config
=========
ZOS Config
==========
/shared_automount/autousers/srs0168/workspace/
cat test1
quote SITE FILEtype=JES NOJESGETBYDSN
GET 'PUBALL.SUBMITS.CNTL(JPH001)' 'jes.log'
Please advise what I am missing in this case.
Unknown User (candiduslynx)
You need to put the JCL contents into test1.
Unknown User (ssekhar)
Thanks for update. Tried with JCL contents but still getting same error.
Unknown User (candiduslynx)
I've never tested this with Jenkins slave on z/OS - you don't need this for the plugin to work.
Also, I'd look into JESINTERFACELEVEL setting on the LPAR you intend the JCL to run at.
Additionally, this might be encoding issue?
Unknown User (ssekhar)
I've never tested this with Jenkins slave on z/OS - you don't need this for the plugin to work.
Unknown User (ssekhar) Could you please explain in more details about - "you don't need this for the plugin to work" ?
Also, I'd look into JESINTERFACELEVEL setting on the LPAR you intend the JCL to run at.
Unknown User (ssekhar) JESINTERFACELEVEL specified to 1.
Additionally, this might be encoding issue?
Unknown User (ssekhar) Agent JVM Options speciefied to -Dfile.encoding=utf-8 -Xnoargsconversion. Please let me know if referring something different then this.
Unknown User (candiduslynx)
Unknown User (kbharath)
my JESINTERFACELEVEL at site is 2, when executing the jenkins job with unchecking JESINTERFACELEVEL=1, the console output holds up with “Submitted job” step and after the wait time mentioned is over, multiple entries of JOBLOG is seen in the console output and the job fails with “ERROR : z/OS job failed with CC WAIT_ERROR”
Similarly, when the JESINTERFACELEVEL=1 is selected and the JENKINS job is run, the console output shows “ NO_RC_JESINTERFACELEVEL_IS_1”, executes the job with just one entry of JOBLOG. But when the mainframe job fails, the Jenkins build is still successful and executes further Jenkins steps as well.
Unknown User (candiduslynx)
OK, for the 1st part - it might be an issue, need more info.
For the 2nd - for JESINTERFACELEVEL1 the plugin just will skip waiting and will set output RC to 0 - this is to be expected.
Unknown User (kbharath)
Below is the job log for when JESINTERFACELEVEL is 2 and the job fails while retrieving the same job logs multiple times
Started by user USER
[EnvInject] - Loading node environment variables.
Building remotely on xcambldm1p.q (linux bld zosconnect) in workspace <workspace>
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] Done
[mf_test_proj] $ /bin/sh -xe <temp>
+ cd <workspace>
+ USER=<USERID>
+ PASS=<pass>
+ HOST=<addr>
+ ftp -inv <addr>
Connected to <addr> (<addr>).
220 Connection will close if idle for more than 5 minutes.
Remote system type is MVS.
331 Send password please.
230 <USERID> is logged on. Working directory is "<USERID>.".
local: SAMPJCL.txt remote: '<PDS>(SAMPJCL)'
227 Entering Passive Mode (modes..)
125 Sending data set <PDS>(SAMPJCL) FIXrecfm 80
250 Transfer completed successfully.
253 bytes received in 0.00157 secs (160.94 Kbytes/sec)
221 Quit command received. Goodbye.
FTP: connected to <addr>:21
Submitted job [JOB01310]
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
FTP: connected to <addr>:21
FTP: connected to <addr>:21
FTP: connected to <addr>:21
ERROR: Failed to log out from FTP server
Job [JOB01310] processing failed. Reason: [WAIT_ERROR]
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
1 J E S 2 J O B L O G -- S Y S T E M A E 5 1 -- N O D E A E P L E X 0 7
0
02.43.44 JOB01310 ---- WEDNESDAY, 10 APR 2019 ----
02.43.44 JOB01310 TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
02.43.44 JOB01310 TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
02.43.44 JOB01310 $HASP373 <USERID>J STARTED - INIT 14 - CLASS A - SYS <sys>
02.43.44 JOB01310 IEF403I <USERID>J - STARTED - TIME=02.43.44
02.43.44 JOB01310 CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
02.43.44 JOB01310 CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
02.43.44 JOB01310 IEA995I SYMPTOM DUMP OUTPUT 978
978 SYSTEM COMPLETION CODE=806 REASON CODE=00000004
978 TIME=02.43.44 SEQ=01590 CPU=0000 ASID=00ID
978 PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
978 NO ACTIVE MODULE FOUND
978 NAME=UNKNOWN
978 DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
978 GR 0: 00001F00 1: 84806000
978 2: 00000000 3: 00000000
978 4: 00000000 5: 008F8728
978 6: 000000FF 7: 00000000
978 8: 7F69B050 9: 01519000
978 A: 00000000 B: 00000000
978 C: 00000000 D: 7F69B050
978 E: 84806000 F: 00000004
978 END OF SYMPTOM DUMP
02.43.44 JOB01310 IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
02.43.44 JOB01310 IEF450I <USERID>J NOTFOUD - ABEND=S806 U0000 REASON=00000004 980
980 TIME=02.43.44
02.43.44 JOB01310 - --TIMINGS (MINS.)-- -----PAGING COUNTS----
02.43.44 JOB01310 -STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV WORKLOAD PAGE SWAP VIO SWAPS
02.43.44 JOB01310 -NOTFOUD *S806 15 0 .00 .00 .0 5719 BATCH 0 0 0 0
02.43.44 JOB01310 IEF404I <USERID>J - ENDED - TIME=02.43.44
02.43.44 JOB01310 -<USERID>J ENDED. NAME-UPDATE TOTAL TCB CPU TIME= .00 TOTAL ELAPSED TIME= .0
02.43.44 JOB01310 $HASP395 <USERID>J ENDED - ABEND=S806
0------ JES2 JOB STATISTICS ------
- 10 APR 2019 JOB EXECUTION DATE
- 10 CARDS READ
- 99 SYSOUT PRINT RECORDS
- 0 SYSOUT PUNCH RECORDS
- 9 SYSOUT SPOOL KBYTES
- 0.00 MINUTES EXECUTION TIME
!! END OF JES SPOOL FILE !!
1 //<USERID>J JOB (1G890820),'UPDATE',CLASS=A, JOB01310
// MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*
IEFC653I SUBSTITUTION JCL - (1G890820),'UPDATE',CLASS=A,MSGCLASS=H,REGION=0M,NOTIFY=<USERID>
2 //NOTFOUD EXEC PGM=NOTFOUND
3 //SYSABEND DD SYSOUT=*
4 //SYSUDUMP DD SYSOUT=*
5 //SYSTSPRT DD SYSOUT=*
6 //SYMDUMP DD DUMMY
7 //SYSOUT DD SYSOUT=*
!! END OF JES SPOOL FILE !!
TSS7000I <USERID> Last-Used 10 Apr 19 02:32 System=<sys> Facility=TSO
TSS7001I Count=00079 Mode=Fail Locktime=None Name=USER
IEFA111I <USERID>J IS USING THE FOLLOWING JOB RELATED SETTINGS:
SWA=ABOVE,TIOT SIZE=32K,DSENQSHR=DISALLOW,GDGBIAS=JOB
IEF236I ALLOC. FOR <USERID>J NOTFOUD
IEF237I JES2 ALLOCATED TO SYSABEND
IEF237I JES2 ALLOCATED TO SYSUDUMP
IEF237I JES2 ALLOCATED TO SYSTSPRT
IEF237I DMY ALLOCATED TO SYMDUMP
IEF237I JES2 ALLOCATED TO SYSOUT
CSV003I REQUESTED MODULE NOTFOUND NOT FOUND
CSV028I ABEND806-04 JOBNAME=<USERID>J STEPNAME=NOTFOUD
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=806 REASON CODE=00000004
TIME=02.43.44 SEQ=01590 CPU=0000 ASID=0051
PSW AT TIME OF ERROR 470C1000 81518ADA ILC 2 INTC 0D
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 01518AD4 - 8400181E 0A0D18FB 180C181D
GR 0: 00001F00 1: 84806000
2: 00000000 3: 00000000
4: 00000000 5: 008F8728
6: 000000FF 7: 00000000
8: 7F69B050 9: 01519000
A: 00000000 B: 00000000
C: 00000000 D: 7F69B050
E: 84806000 F: 00000004
END OF SYMPTOM DUMP
IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR INSTALLATION REQUEST
IEF472I <USERID>J NOTFOUD - COMPLETION CODE - SYSTEM=806 USER=0000 REASON=00000004
IEF285I <USERID>.<USERID>J.JOB01310.D0000101.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000102.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000103.? SYSOUT
IEF285I <USERID>.<USERID>J.JOB01310.D0000104.? SYSOUT
IEF373I STEP/NOTFOUD /START 2019100.0243
IEF032I STEP/NOTFOUD /STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
VIRT: 4K SYS: 236K EXT: 4K SYS: 10356K
ATB- REAL: 1044K SLOTS: 0K
VIRT- ALLOC: 11M SHRD: 0M
IEF375I JOB/<USERID>J/START 2019100.0243
IEF033I JOB/<USERID>J/STOP 2019100.0243
CPU: 0 HR 00 MIN 00.01 SEC SRB: 0 HR 00 MIN 00.00 SEC
!! END OF JES SPOOL FILE !!
ERROR: z/OS job failed with CC WAIT_ERROR
[BFA] Scanning build for known causes...
[BFA] No failure causes found
[BFA] Done. 0s
Finished: FAILURE
Unknown User (candiduslynx)
Open issue in Jira attaching this log as file there, please
Unknown User (sitansu)
Hi,Could you please refer some document which describes the steps how to submit JCL jobs using Jenkins from outside mainframe ?
Unknown User (candiduslynx)
IDK, the plugin is pretty self-describing already.