Re: IEASYM override in LOADXX

2005-12-05 Thread Schiradin,Roland HG-Dir itb-db/dc
In the IEASYM you could use

SYSDEF  SYMDEF(&LPARNUM='01')
SYMDEF(&LPTYP='X')
SYSDEF  SYSNAME(AL10)
SYMDEF(&LPARNUM='03')
SYMDEF(&LPTYP='P')   

Only on SYSNAME(AL10) the LPARNUM will be '03' and LPTYP = 'P'

Roland


-Original Message-
From: IBM Mainframe Discussion List 
[mailto:[EMAIL PROTECTED] On Behalf Of Casey Rhodes
Sent: Monday, December 05, 2005 5:28 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: IEASYM override in LOADXX


I have to change 1 system symbol for 1 sysres volume for 1 
system in a 6 system sysplex. In my LOADXX member is it 
possible to override the IEASYM specification with an override 
at the system specfice level.

Example:

IEASYM   (00,Z0,L)
NUCLST   Z0
PARMLIB  SYS1.LPLEX.PARMLIB
PARMLIB  SYS1.PARMLIB
PARMLIB  SYS1.IBM.PARMLIB
SYSCAT   CATL00133CCATALOG.LPLEX.MASTER
SYSPARM  (Z0)

*-*
* SL20 SPECIFIC VALUES*
*-*
LPARNAME SL20
IEASYM   (01,Z0,L)
IODF E0 SYS0 LPLEXFPB B0 Y
SYSPARM  (Z0,20)

I have attempted this and did not get the desired result. I did 
not get an error on IPL but I received the concatenation in the 
first IEASYM statement. This leads me to believe I must have a 
seperate loadxx member for this system. Does anyone know a way around?

--
For IBM-MAIN subscribe / signoff / archive access instructions, 
send email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IEASYM override in LOADXX

2005-12-06 Thread TISLER Zaromil
<-- snip -->

Example:

IEASYM   (00,Z0,L)
NUCLST   Z0
PARMLIB  SYS1.LPLEX.PARMLIB
PARMLIB  SYS1.PARMLIB
PARMLIB  SYS1.IBM.PARMLIB
SYSCAT   CATL00133CCATALOG.LPLEX.MASTER
SYSPARM  (Z0)

*-*
* SL20 SPECIFIC VALUES*
*-*
LPARNAME SL20
IEASYM   (01,Z0,L)
IODF E0 SYS0 LPLEXFPB B0 Y
SYSPARM  (Z0,20)
<-- snip -->


Your IODF statement is only valid for SL20?


Looking at the description of LOADxx in the "MVS Initialization and Tuning
Reference", I don't see a possibility to override a statement. There is no
such combination in the examples.

But, you could try the other way around:


--
NUCLST   Z0
PARMLIB  SYS1.LPLEX.PARMLIB
PARMLIB  SYS1.PARMLIB
PARMLIB  SYS1.IBM.PARMLIB
SYSCAT   CATL00133CCATALOG.LPLEX.MASTER

*-*
* SL20 SPECIFIC VALUES*
*-*
LPARNAME SL20
IEASYM   (01,Z0,L)
IODF E0 SYS0 LPLEXFPB B0 Y
SYSPARM  (Z0,20)

*-*
* General valid (if you have more CECs, repeat this section:  *
*-*
HWNAME   
IEASYM   (00,Z0,L)
SYSPARM  (Z0)


--


Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IEASYM override in LOADXX

2005-12-06 Thread TISLER Zaromil
<-- snip -->

NUCLST   Z0
PARMLIB  SYS1.LPLEX.PARMLIB
PARMLIB  SYS1.PARMLIB
PARMLIB  SYS1.IBM.PARMLIB
SYSCAT   CATL00133CCATALOG.LPLEX.MASTER

*-*
* SL20 SPECIFIC VALUES*
*-*
LPARNAME SL20
IEASYM   (01,Z0,L)
IODF E0 SYS0 LPLEXFPB B0 Y
SYSPARM  (Z0,20)

*-*
* General valid (if you have more CECs, repeat this section:  *
*-*
HWNAME   
IEASYM   (00,Z0,L)
SYSPARM  (Z0)

<-- snip -->

I just tested it. It does not work the way I thought it should. Looking
again at the examples, I would say that you can not override statements
defined in an HWNAME section with statements defined in the LPARNAME
section. It looks like you have to define a statement always on the same
level, like if you have 10 lpars on the CPC, you need ten LPARNAME sections
to define IEASYM statement different for a single system (I do not believe I
am going to test this).


Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html