Re: LE jcl override?

2007-08-30 Thread Ted MacNEIL
You can also do this with a PARM= option regardless of z/OS release, but there are some finicky bits. I would go with the CEEOPTS DD, since the PARM string still has a limit of 100 bytes, counting both application and LE options. - Too busy driving to stop for gas!

LE jcl override?

2007-08-28 Thread Stead, Joe
How do I over-ride some language environment parameters with jcl for a quick test? -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO

Re: LE jcl override?

2007-08-28 Thread Fletcher, Kevin
snip How do I over-ride some language environment parameters with jcl for a quick test? /snip Joe, I think you can do this on the EXEC PGM=PARM='LE OPTIONS/USER PARMS' but there is a length restriction (I think 100 bytes). here is a sample //PS010EXEC PGM=FWA00502,

Re: LE jcl override?

2007-08-28 Thread Steve Comstock
Stead, Joe wrote: How do I over-ride some language environment parameters with jcl for a quick test? Depends on what you want to override and what version of LE / z/OS you're running. Simplest approach is: //STEPxx EXEC PGM=, // PARM='program_parms/LE_parms' -- if program is

Re: LE jcl override?

2007-08-28 Thread Miklos Szigetvari
Hi CEEOPTS DD or parm: // PARM=('POSIX(ON),TRACE(ON,1024,DUMP,le=3),trap(off,nospie)', // '/ -tcallstack ') Stead, Joe wrote: How do I over-ride some language environment parameters with jcl for a quick test?

Re: LE jcl override?

2007-08-28 Thread Schneiderwent, Craig
- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Behalf Of Stead, Joe Sent: Tuesday, August 28, 2007 8:54 AM To: IBM-MAIN@BAMA.UA.EDU Subject: LE jcl override? How do I over-ride some language environment parameters with jcl for a quick test