Hi All
I have a JCL ,which executes a program with PARM.
The Existing PARM value given in the JCL is close to end of line(70th column).Now I need to add another parameter in PARM.
How can I give that in second line.
Existing PARM:
PARM=(&JDT&PARM1&RUNID&CA005CA&YYYY&PARM2&PARM3&PARM4&PARM5)
(P in PARM starting from column 12 and M in &PARM% ending at 70th column)
In job the value will be ARM='066TGT2011PYPP'
Now I need to add &PARM6 to it.When an giving as below
PARM=(&JDT&PARM1&RUNID&CA005CA&YYYY&PARM2&PARM3&PARM4&PARM5 X
&PARM6)
It s giving a JCL error 'UNBALANCED PARENTHESIS IN THE "PARM " FIELD '
Can you please let me know if there is any way we can add Parm ?
Thank You