Re: Submit a JCL from within another JCL

2009-07-17 Thread Tony B.
Likewise your favorite SORT product. -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Thursday, July 16, 2009 7:07 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Submit a JCL from within another JCL On Thu, 16 Jul 2009 18

Re: Submit a JCL from within another JCL

2009-07-17 Thread Jan MOEYERSONS
On Thu, 16 Jul 2009 05:40:45 -0500, Parin Gangar wrote: >I remember there is some IKJ utility that allows us to do that, but, I can't >quite remember the name. > I think IEBEDIT is the utility you may be thinking about. But as others have very well pointed out, there are probably easier and mor

Re: Submit a JCL from within another JCL

2009-07-16 Thread Paul Gilmartin
On Thu, 16 Jul 2009 18:06:23 -0400, Thompson, Steve wrote: > >>>You can use IKJ : >>> >>>//SYSTSIN DD * >>> SUBMIT 'YOUR.PDS.JCL(JCL)' >>> >>Subject to the restriction that the source data set must >>have RECFM=F[B],LRECL=80. IEBGENER is more flexible. > >Except that the OP did say KSDS... IDCAM

Re: Submit a JCL from within another JCL

2009-07-16 Thread Thompson, Steve
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Paul Gilmartin Sent: Thursday, July 16, 2009 4:46 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Submit a JCL from within another JCL On Thu, 16 Jul 2009 14:17:38 +0200, CUNY Yann wrote: >You

Re: Submit a JCL from within another JCL

2009-07-16 Thread Paul Gilmartin
On Thu, 16 Jul 2009 14:17:38 +0200, CUNY Yann wrote: >You can use IKJ : > >//REXX1EXEC PGM=IKJEFT1B >//SYSTSIN DD * > SUBMIT 'YOUR.PDS.JCL(JCL)' >//SYSTSPRT DD SYSOUT=* > Subject to the restriction that the source data set must have RECFM=F[B],LRECL=80. IEBGENER is more flexible. -- gil --

Re: Submit a JCL from within another JCL

2009-07-16 Thread Rick Fochtman
Parin Gangar wrote: Hi, I have a requirement where I need to submit a JCL stored in a flat file / KSDS file from within another JCL which is executing. I remember there is some IKJ utility that allows us to do that, but, I can't quite remember the name. It would be great help if I can get

Re: Submit a JCL from within another JCL

2009-07-16 Thread CUNY Yann
You can use IKJ : //REXX1EXEC PGM=IKJEFT1B //SYSTSIN DD * SUBMIT 'YOUR.PDS.JCL(JCL)' //SYSTSPRT DD SYSOUT=* Cordialement, Yann Cuny Groupe

Re: Submit a JCL from within another JCL

2009-07-16 Thread Ted MacNEIL
> have a requirement where I need to submit a JCL stored in a flat file / KSDS > file from within another JCL which is executing. Flat file: //SUBMIT EXEC PGM=IEBGENER //SYSIN DDDUMMY //SYSUT1 DDDISP=SHR,DSN= //SYSUT2 DDSYSOUT=(,INTRDR) (I'd check the placement of the comm

Re: Submit a JCL from within another JCL

2009-07-16 Thread Klein, Kenneth
Just iebgener the cards into the internal reader, iefrdr or something similar. Ken Klein Sr. Systems Programmer Kentucky Farm Bureau Insurance - Louisville kenneth.kl...@kyfb.com 502-495-5000 x7011 -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On

Re: Submit a JCL from within another JCL

2009-07-16 Thread Parin Gangar
Thanks, I will try and post any issues. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/

Re: Submit a JCL from within another JCL

2009-07-16 Thread גדי בן אבי
XXX is the name of a file containing JCL. //CALLJOB EXEC PGM=IEBGENER //SYSUT1 DD DSN=XXX,DISP=SHR //SYSUT2 DD SYSOUT=(A,INTRDR) //SYSIN DD DUMMY //SYSPRINTDD DUMMY -Original Message- From: IBM