EZZ0401I error message

2009-05-04 Thread Mike Myers
Hi all:
 
We are migrating to z/OS v1.r9 and having troubles getting TCPIP up 
successfully. We are getting the error message:
 
 EZZ0401I SYNTAX ERROR IN FILE: 'SYS2.TCPIP.PARMS(TCPVTZOS)' ON LINE:
439 at 'PUBTCA1'
 
The error occurs for every other line in the file, beginning with:
 
LUMAP  PUBTCA1  PUBIP1
LUMAP  PUBTCA1  PUBSOM
LUMAP  PUBTCA1  EASTRAD
LUMAP  PUBTCA1  PUBIP1
LUMAP  POOLTCB1 POOLIP1
LUMAP  POOLTCB2 POOLIP2
LUMAP  POOLTCB3 POOLIP3
 
The statements appear to match the syntax description for the LUMAP statement, 
and worked successfully in z/OS v1.r7. We don't see any reference to specific 
changes here in the migration manual.
 
Any ideas?
 
Mike Myers
Pitt County Memorial Hospital

--
The contents of this e-mail (and any attachments) are confidential, may be 
privileged and may contain copyright material. You may only reproduce or 
distribute material if you are expressly authorized by us to do so. If you are 
not the intended recipient, any use, disclosure or copying of this email (and 
any attachments) is unauthorized. If you have received this e-mail in error, 
please notify the sender and immediately delete this e-mail and any copies of 
it from your system.
==

--
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: EZZ0401I error message

2009-05-04 Thread Mark Zelden
On Mon, 4 May 2009 15:29:18 -0400, Mike Myers mike.my...@pcmh.com wrote:

Hi all:
 
We are migrating to z/OS v1.r9 and having troubles getting TCPIP up
successfully. We are getting the error message:
 
 EZZ0401I SYNTAX ERROR IN FILE: 'SYS2.TCPIP.PARMS(TCPVTZOS)' ON LINE:
439 at 'PUBTCA1'
 
The error occurs for every other line in the file, beginning with:
 
LUMAP  PUBTCA1  PUBIP1
LUMAP  PUBTCA1  PUBSOM
LUMAP  PUBTCA1  EASTRAD
LUMAP  PUBTCA1  PUBIP1
LUMAP  POOLTCB1 POOLIP1
LUMAP  POOLTCB2 POOLIP2
LUMAP  POOLTCB3 POOLIP3
 
The statements appear to match the syntax description for the LUMAP statement, 
and worked successfully in z/OS v1.r7. We don't see any reference to specific 
changes here in the migration manual.
 
Any ideas?
 
Mike Myers
Pitt County Memorial Hospital


Is this the same exact data set as 1.7 or a copy?  Do you number it when
copying if so?  What if you put semicolons after each statement?

LUMAP  PUBTCA1  PUBIP1 ;
LUMAP  PUBTCA1  PUBSOM ;
...


Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:mark.zel...@zurichna.com
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.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: EZZ0401I error message

2009-05-04 Thread Matthew Stitt
At the 1.9 level the TN3270 server is a requirement, not optional.  

If you have not done so yet, you should take every statement dealing with
TN3270 beginning with Telnetparms and ending with Endvtam and place them in
a separate profile member.  Then study the instructions for creating the
TN3270 started task.  This can be done at your current level.

Otherwise, just pull all those statements from the TCPIP startup
configuration profile.

On Mon, 4 May 2009 14:36:52 -0500, Mark Zelden mark.zel...@zurichna.com wrote:

On Mon, 4 May 2009 15:29:18 -0400, Mike Myers mike.my...@pcmh.com wrote:

Hi all:

We are migrating to z/OS v1.r9 and having troubles getting TCPIP up
successfully. We are getting the error message:

 EZZ0401I SYNTAX ERROR IN FILE: 'SYS2.TCPIP.PARMS(TCPVTZOS)' ON LINE:
439 at 'PUBTCA1'

The error occurs for every other line in the file, beginning with:

LUMAP  PUBTCA1  PUBIP1
LUMAP  PUBTCA1  PUBSOM
LUMAP  PUBTCA1  EASTRAD
LUMAP  PUBTCA1  PUBIP1
LUMAP  POOLTCB1 POOLIP1
LUMAP  POOLTCB2 POOLIP2
LUMAP  POOLTCB3 POOLIP3

The statements appear to match the syntax description for the LUMAP statement,
and worked successfully in z/OS v1.r7. We don't see any reference to specific
changes here in the migration manual.

Any ideas?

Mike Myers
Pitt County Memorial Hospital


Is this the same exact data set as 1.7 or a copy?  Do you number it when
copying if so?  What if you put semicolons after each statement?

LUMAP  PUBTCA1  PUBIP1 ;
LUMAP  PUBTCA1  PUBSOM ;
...


Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:mark.zel...@zurichna.com
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.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: EZZ0401I error message

2009-05-04 Thread Mark Zelden
On Mon, 4 May 2009 14:42:17 -0500, Matthew Stitt mathwst...@bellsouth.net
wrote:

At the 1.9 level the TN3270 server is a requirement, not optional.

If you have not done so yet, you should take every statement dealing with
TN3270 beginning with Telnetparms and ending with Endvtam and place them in
a separate profile member.  Then study the instructions for creating the
TN3270 started task.  This can be done at your current level.

Otherwise, just pull all those statements from the TCPIP startup
configuration profile.


Good catch.   You are probably right.  I didn't even consider that since 
the OP wrote:

We don't see any reference to specific changes here in the migration manual.

We did this at z/OS 1.6... which was a long time ago already.  There were lots
of warning to do it before 1.9 - including the migration checker.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:mark.zel...@zurichna.com
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.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: EZZ0401I error message

2009-05-04 Thread Mike Myers
Matthew:
 
Thanks. We are following that path and it looks like that will be the solution. 
 
Mike


 Matthew Stitt mathwst...@bellsouth.net 5/4/2009 3:42 PM 
At the 1.9 level the TN3270 server is a requirement, not optional.  

If you have not done so yet, you should take every statement dealing with
TN3270 beginning with Telnetparms and ending with Endvtam and place them in
a separate profile member.  Then study the instructions for creating the
TN3270 started task.  This can be done at your current level.

Otherwise, just pull all those statements from the TCPIP startup
configuration profile.

On Mon, 4 May 2009 14:36:52 -0500, Mark Zelden mark.zel...@zurichna.com wrote:

On Mon, 4 May 2009 15:29:18 -0400, Mike Myers mike.my...@pcmh.com wrote:

Hi all:

We are migrating to z/OS v1.r9 and having troubles getting TCPIP up
successfully. We are getting the error message:

 EZZ0401I SYNTAX ERROR IN FILE: 'SYS2.TCPIP.PARMS(TCPVTZOS)' ON LINE:
439 at 'PUBTCA1'

The error occurs for every other line in the file, beginning with:

LUMAP  PUBTCA1  PUBIP1
LUMAP  PUBTCA1  PUBSOM
LUMAP  PUBTCA1  EASTRAD
LUMAP  PUBTCA1  PUBIP1
LUMAP  POOLTCB1 POOLIP1
LUMAP  POOLTCB2 POOLIP2
LUMAP  POOLTCB3 POOLIP3

The statements appear to match the syntax description for the LUMAP statement,
and worked successfully in z/OS v1.r7. We don't see any reference to specific
changes here in the migration manual.

Any ideas?

Mike Myers
Pitt County Memorial Hospital


Is this the same exact data set as 1.7 or a copy?  Do you number it when
copying if so?  What if you put semicolons after each statement?

LUMAP  PUBTCA1  PUBIP1 ;
LUMAP  PUBTCA1  PUBSOM ;
...


Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:mark.zel...@zurichna.com 
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/ 
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.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 


--
The contents of this e-mail (and any attachments) are confidential, may be 
privileged and may contain copyright material. You may only reproduce or 
distribute material if you are expressly authorized by us to do so. If you are 
not the intended recipient, any use, disclosure or copying of this email (and 
any attachments) is unauthorized. If you have received this e-mail in error, 
please notify the sender and immediately delete this e-mail and any copies of 
it from your system.
==

--
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