|
|
| Author |
Message |
chynna_v
New User
Joined: 22 Apr 2005 Posts: 6
|
|
|
|
Hi im having problems with the restart parameter,It works fine if RESTART parameter is on a individual line (with out any other job parameters), but it won't work if it is on the same line with any other job parameters. For example
t works fine with:
//MYJOB JOB (P,JJBB,BA1234),
// CLEANSHEET.PROD,
// CLASS=Q,
// MSGLEVEL=(1,1),
// MSGCLASS=L,
// USER=FSBATCH,
// RESTART=MYJOB1.PS040
but it wont work if the job card is:
//MYJOB JOB (P,JJBB,BA1234),
// CLEANSHEET.PROD,
// CLASS=Q,
// MSGLEVEL=(1,1),
// MSGCLASS=L,
// USER=FSBATCH,RESTART=MYJOB1.PS040
any input would be greatly appreciated.  |
|
| Back to top |
|
 |
References
|
Posted: Sat Apr 23, 2005 10:22 am Post subject: Re: RESTART parameter |
 |
|
|
 |
maverick05
New User
Joined: 14 Apr 2005 Posts: 31 Location: Hyderabad,India
|
|
|
|
| What's the error message ur getting?? |
|
| Back to top |
|
 |
chynna_v
New User
Joined: 22 Apr 2005 Posts: 6
|
|
|
|
| JCP0526E JCL error: 1 Unrecognized JCL statement(s) -- (J)9 |
|
| Back to top |
|
 |
vrch
New User
Joined: 21 Mar 2005 Posts: 21
|
|
|
|
Hello,
It wont show any error whether u code restart parameter in a seperate line or same line.I am not facing any problem when i tested u r problem.
I coded like below then step2 is executed without any problem.
//MYJOBJCL JOB , ,CLASS=F,NOTIFY=&SYSUID,RESTART=STEP2
//STEP1 EXEC PGM=IEFBR14
//DD1 DD DSN=SAMPLE.TEST.FILE2,DISP=(NEW,CATLG,DELETE),
// UNIT=SYSDA,SPACE=(TRK,(1,1,5))
//SYSPRINT DD SYSOUT=*
//STEP2 EXEC PGM=IEFBR14
//DD1 DD DSN=SAMPLE.TEST.FILE3,DISP=(NEW,CATLG,DELETE),
// UNIT=SYSDA,SPACE=(TRK,(1,1,5))
//SYSPRINT DD SYSOUT=*
//SYSIN DD DUMMY
If there is any problem or query let me know.
Bye |
|
| Back to top |
|
 |
andycool
Active User
Joined: 12 Apr 2005 Posts: 65
|
|
|
|
Are Dude,
Give the space after the "comma"
//MYJOB JOB (P,JJBB,BA1234),
// CLEANSHEET.PROD,
// CLASS=Q,
// MSGLEVEL=(1,1),
// MSGCLASS=L,
// USER=FSBATCH, RESTART=MYJOB1.PS040
This shud solve the purpose.
If not also let me know the solution :D |
|
| Back to top |
|
 |
superk
Moderator Team Head
Joined: 26 Apr 2004 Posts: 3173 Location: Charlotte,NC USA
|
|
|
|
| chynna_v wrote: |
| JCP0526E JCL error: 1 Unrecognized JCL statement(s) -- (J)9 |
chynna_v, a JCL error is either a $HASP106 or IEF453I message. The message you gave, JCP0526E, is something else that does not appear in either IBM's message libraries or in MVS QuickRef. In the future, please provide accurate information so the members of the forum can provide a reasonable and clear response. If possible, could you please provide the proper $HASP* and/or IEF* message? |
|
| Back to top |
|
 |
|
|
|