Killing Off Symbolic JCL Parameter

2010-05-11 Thread Mike Kovach
I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.
All,

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.ZZ is no longer 
necessary.  Unfortunately, many JCL members referencde the PROC and supply 
override values for PRDHLQ=.  I want to change the PROC without having to 
change the JCL right now.

I already tried to plug the symbolic into a PARM

//STEP  EXEC PGM=IEFBR14,PARM=HLQPARM

PRO/JCL says that the override PARAMETER needs to be QUOTED.  This would 
require changing the JCL.  

Any other ideas on how to burn off the ORPHANED SYMBOLIC?

Thanks,

Mike Kovach

--
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/ibm-main.html


Re: Killing Off Symbolic JCL Parameter

2010-05-11 Thread Field, Alan C.
What about a // SET JUNK=HLQPARM ???

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of 
Mike Kovach
Sent: Tuesday, May 11, 2010 10:44 
To: IBM-MAIN@bama.ua.edu
Subject: Killing Off Symbolic JCL Parameter

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=XXX.YYY.
All,

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.ZZ is no longer 
necessary.  Unfortunately, many JCL members referencde the PROC and supply 
override values for PRDHLQ=.  I want to change the PROC without having to 
change the JCL right now.

I already tried to plug the symbolic into a PARM

//STEP  EXEC PGM=IEFBR14,PARM=HLQPARM

PRO/JCL says that the override PARAMETER needs to be QUOTED.  This would 
require changing the JCL.  

Any other ideas on how to burn off the ORPHANED SYMBOLIC?

Thanks,

Mike Kovach

--
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/ibm-main.html

--
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/ibm-main.html


Re: Killing Off Symbolic JCL Parameter

2010-05-11 Thread Thompson, Steve
-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Mike Kovach
Sent: Tuesday, May 11, 2010 10:44 AM
To: IBM-MAIN@bama.ua.edu
Subject: Killing Off Symbolic JCL Parameter

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.=

All,=0A=0AI am changing a PROC so that DEFAULT SYMBOLIC
PRDHLQ=3DX.YYY.=
ZZ is no longer necessary.=A0 Unfortunately, many JCL members
referencde=A0=
the PROC and supply override values for=A0PRDHLQ=3D.=A0 I want to change
th=
e PROC without having to change the JCL right now.=0A=0AI already tried
to =
plug the symbolic into a PARM=0A=0A//STEP=A0 EXEC
PGM=3DIEFBR14,PARM=3DHLQ=
PARM=0A=0APRO/JCL says that the override PARAMETER needs to be
QUOTED.=A0 T=
his would require changing the JCL.=A0 =0A=0AAny other ideas on how to
burn=
 off the ORPHANED SYMBOLIC?=0A=0AThanks,=0A=0AMike Kovach
SNIPPAGE

Put in an IEFBR14 step as the first thing in the proc. I would use
COND=ONLY for this step. Then you can substitute all the parms into the
PARM= string. This allows this step to eat the unwanted/needed parms
while not executing. And should an ABEND occur prior, this step should
still do nothing.

Regards,
Steve Thompson

-- Opinions expressed by this poster may not reflect those of poster's
employer --

--
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/ibm-main.html


Re: Killing Off Symbolic JCL Parameter

2010-05-11 Thread Mike Kovach
Thanks for the answer.  I must have been having a
I love this forum.

Thanks for the answer.  I must have been having a brain block.

Mike Kovach





From: Field, Alan C. alan.c.fi...@supervalu.com
To: IBM-MAIN@bama.ua.edu
Sent: Tue, May 11, 2010 11:56:55 AM
Subject: Re: Killing Off Symbolic JCL Parameter

What about a // SET JUNK=HLQPARM ???

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of 
Mike Kovach
Sent: Tuesday, May 11, 2010 10:44 
To: IBM-MAIN@bama.ua.edu
Subject: Killing Off Symbolic JCL Parameter

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=XXX.YYY.
All,

I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.ZZ is no longer 
necessary.  Unfortunately, many JCL members referencde the PROC and supply 
override values for PRDHLQ=.  I want to change the PROC without having to 
change the JCL right now.

I already tried to plug the symbolic into a PARM

//STEP  EXEC PGM=IEFBR14,PARM=HLQPARM

PRO/JCL says that the override PARAMETER needs to be QUOTED.  This would 
require changing the JCL.  

Any other ideas on how to burn off the ORPHANED SYMBOLIC?

Thanks,

Mike Kovach

--
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/ibm-main.html

--
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/ibm-main.html


--
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/ibm-main.html


Re: Killing Off Symbolic JCL Parameter

2010-05-11 Thread Itschak Mugzach
Or.. rty //ANYDD DD DUMMY,DSN=HLQPARM..A
On Tue, May 11, 2010 at 7:06 PM, Mike Kovach mrmach...@yahoo.com wrote:

 Thanks for the answer.  I must have been having a
 I love this forum.

 Thanks for the answer.  I must have been having a brain block.

 Mike Kovach




 
 From: Field, Alan C. alan.c.fi...@supervalu.com
 To: IBM-MAIN@bama.ua.edu
 Sent: Tue, May 11, 2010 11:56:55 AM
 Subject: Re: Killing Off Symbolic JCL Parameter

 What about a // SET JUNK=HLQPARM ???

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of Mike Kovach
 Sent: Tuesday, May 11, 2010 10:44
 To: IBM-MAIN@bama.ua.edu
 Subject: Killing Off Symbolic JCL Parameter

 I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=XXX.YYY.
 All,

 I am changing a PROC so that DEFAULT SYMBOLIC PRDHLQ=X.YYY.ZZ is no
 longer necessary.  Unfortunately, many JCL members referencde the PROC and
 supply override values for PRDHLQ=.  I want to change the PROC without
 having to change the JCL right now.

 I already tried to plug the symbolic into a PARM

 //STEP  EXEC PGM=IEFBR14,PARM=HLQPARM

 PRO/JCL says that the override PARAMETER needs to be QUOTED.  This would
 require changing the JCL.

 Any other ideas on how to burn off the ORPHANED SYMBOLIC?

 Thanks,

 Mike Kovach

 --
 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/ibm-main.html

 --
 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/ibm-main.html


 --
 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/ibm-main.html


--
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/ibm-main.html