IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

JCL ERROR return CODE 614


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
luban

New User


Joined: 19 Nov 2005
Posts: 26
Location: Shanghai, China

PostPosted: Wed Sep 17, 2008 8:10 am
Reply with quote

Hi,

Could anyone give me some advice about the meaning of the retun code of JCL ERROR?

JOB NOT RUN - JCL ERROR 614

Or if here's an diagnostical manual I can check ?

Thank you very much.

Ban
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Sep 17, 2008 8:16 am
Reply with quote

Hello,

You need to post some more info, including the jcl you submitted, how the jcl was submitted, and any other diagnostic info that was presented either at the terminal or in a sysout.
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Wed Sep 17, 2008 8:21 am
Reply with quote

Hi,

check the joblog output, I'm sure the information is there which will tell you the cause of the JCL error.

A JCL error and return code are 2 different things, a step has to execute in order to get a return code.


Gerry
Back to top
View user's profile Send private message
luban

New User


Joined: 19 Nov 2005
Posts: 26
Location: Shanghai, China

PostPosted: Wed Sep 17, 2008 8:43 am
Reply with quote

Actually, here's no information I can found:

JESMSGLG JES2:
********************************* Top of Data **********************************
.SARPAGE 1
. J E S 2 J O B L O G -- S Y S T E M S Y S A -- N O D
.
.17.35.28 JOB00242 ---- WEDNESDAY, 10 SEP 2008 ----
.17.35.28 JOB00242 *IEFC452I jobname - JOB NOT RUN - JCL ERROR 614
.------ JES2 JOB STATISTICS ------
. 125 CARDS READ
. 438 SYSOUT PRINT RECORDS
. 0 SYSOUT PUNCH RECORDS
. 34 SYSOUT SPOOL KBYTES
. 0.00 MINUTES EXECUTION TIME
******************************** Bottom of Data ********************************

JESYSMSG JES2:
********************************* Top of Data **********************************
.SARPAGE 3
.
. STMT NO. MESSAGE
. 4 IEFC001I PROCEDURE CA11RMS WAS EXPANDED USING SYSTEM LIBRARY SYS3A.PR
. 10 IEFC001I PROCEDURE SOIATRK2 WAS EXPANDED USING PRIVATE LIBRARY PSMOS.
. 25 IEFC001I PROCEDURE SOIA510X WAS EXPANDED USING PRIVATE LIBRARY PSMOS.
. 25 IEFC657I THE SYMBOL TRACE WAS NOT USED
. 56 IEFC001I PROCEDURE SOIATRK2 WAS EXPANDED USING PRIVATE LIBRARY PSMOS.
******************************** Bottom of Data ********************************
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Sep 17, 2008 8:58 am
Reply with quote

The key piece of information is the message number, 'IEFC452I', which you can look at here:
www-03.ibm.com/systems/z/os/zos/bkserv/lookat/
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Wed Sep 17, 2008 8:59 am
Reply with quote

Hi,

the problem is

Quote:
25 IEFC657I THE SYMBOL TRACE WAS NOT USED


One of the procs you are executing has the SYMBOLIC parameter TRACE not resolved.


Gerry
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Sep 17, 2008 9:01 am
Reply with quote

You did not show us the JCL (job card in particular), but make sure the job name has correct syntax.
Back to top
View user's profile Send private message
luban

New User


Joined: 19 Nov 2005
Posts: 26
Location: Shanghai, China

PostPosted: Wed Sep 17, 2008 10:17 am
Reply with quote

Hi Guys,

Here's the job card:

//HOPLOIPK JOB (DEC625,3E3V),'HE0 OM UPDATE',
// CLASS=H,
// MSGCLASS=O,
// MSGLEVEL=(1,1),
// RESTART=*,
// SCHENV=D2P1

And I think the JOB name is nothing wrong.

Actually I have another job also abend for JCL ERROR with following message only, here's no SYSPRNT informationg:

IEFC452I SMOSOIZM - JOB NOT RUN - JCL ERROR 003

And you can see they have the same message IEFC452I, but the number was 003.

icon_confused.gif
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Sep 17, 2008 11:19 am
Reply with quote

Hello,

Quote:
And I think the JOB name is nothing wrong.
Probably correct - read on icon_smile.gif

You have a problem with the actual JCL.

Did you read the post from Gerry (good catch icon_smile.gif )? Your actual problem is this:
Code:
IEFC657I THE SYMBOL TRACE WAS NOT USED

Might you have the same error in the "other" job also?

If you don't see the problem, post all of the jcl and we will look with you.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Sep 17, 2008 12:12 pm
Reply with quote

Once again ..Hello,

What's SMOSOIZM in
Code:
IEFC452I SMOSOIZM - JOB NOT RUN - JCL ERROR 003
I've never heard of it, it should be local to your JOB..well probably I'm at such a point that i would echo Gerry & then Dick..
Quote:
.. post all of the jcl...
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Sep 17, 2008 12:20 pm
Reply with quote

Anuj D. wrote:
Once again ..Hello,
What's SMOSOIZM in
Code:
IEFC452I SMOSOIZM - JOB NOT RUN - JCL ERROR 003
I've never heard of it, it should be local to your JOB..well probably I'm at such a point that i would echo Gerry & then Dick..
Quote:
.. post all of the jcl...

Errrr, Anuj, perhaps it might be the job name.
Back to top
View user's profile Send private message
luban

New User


Joined: 19 Nov 2005
Posts: 26
Location: Shanghai, China

PostPosted: Wed Sep 17, 2008 1:02 pm
Reply with quote

Hi Guys,

icon_razz.gif

The problem has been solved.
For the Second problem, I got following message at the bottom of JESYSMSG JES2

1650 IEFC602I EXCESSIVE NUMBER OF EXECUTE STATEMENTS

so I think the problem is the Statements of this job is over 255, and I delete some steps, which completed successfully.

For the First problem, I think gcicchet is correct. I will analyze the issue according to this route.

Thank you all icon_razz.gif icon_razz.gif icon_razz.gif So~~~much.

Ban
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Sep 17, 2008 1:36 pm
Reply with quote

Hi Expat,

Post from OP from where I quoted for "SMOSOIZM" has the JOB card as well, it shows different JOB name, so I didn't anticipate that..
Code:
//HOPLOIPK JOB (DEC625,3E3V),'HE0 OM UPDATE',
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Sep 17, 2008 9:29 pm
Reply with quote

Hello Ban,

Thank you for posting that it is working - good luck icon_smile.gif

d
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
Search our Forums:

Back to Top