|
|
| Author |
Message |
rajantsr
New User
Joined: 31 Jan 2007 Posts: 19 Location: Chennai
|
|
|
|
This is the issue
I have a JCL(TESTOVJC) and it EXEC a proc(TESTOVPR) as below.
----------------------------------
//TESTOVJC JOB PRC00,'TESTOVER',CLASS=K,MSGCLASS=I,TIME=1440,
// NOTIFY=&SYSUID
//*
//
//S010 EXEC TESTOVPR
//*
---------------------------------
//TESTOVPR PROC
//*
//S010 EXEC PGM=IEFBR14
//*
//S020 EXEC PGM=IEFBR14
//*
//S030 EXEC PGM=IEFBR14
//*
---------------------------------
I want to insert a step S025 from the JCL without changing anything in the PROC.
Is it possible, or am i being crazy ?
Cheers,
R |
|
| Back to top |
|
 |
References
|
|
 |
enrico-sorichetti
Global Moderator
Joined: 14 Mar 2007 Posts: 3168 Location: italy
|
|
|
|
| Just impossible! |
|
| Back to top |
|
 |
mmwife
Super Moderator
Joined: 30 May 2003 Posts: 1506
|
|
|
|
It depends on what you're ultimately trying to do. If it's a temporary thing, you can:
Copy the PROC JCL into your in-stream JCL and make an in-stream PROC out of it adding the extra step.
Or just copy it over and exec it as JCL in your JOB. |
|
| Back to top |
|
 |
Phrzby Phil
Senior Member
Joined: 31 Oct 2006 Posts: 497 Location: Richmond, Virginia
|
|
|
|
| It's a sad day when JCL questions drive us insane. |
|
| Back to top |
|
 |
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 3544 Location: Brussels once more ...
|
|
|
|
| And with a PROC executing 3 IEFBR14's I beg to ask if this is your homework. |
|
| Back to top |
|
 |
rajantsr
New User
Joined: 31 Jan 2007 Posts: 19 Location: Chennai
|
|
|
|
Yes expat ! it is for example, actually the steps does different things than what i gave in here. It is just for example...
Sorry Phil, This question is driving us crazy for past fewdays.. |
|
| Back to top |
|
 |
|
|