Re: A couple of memory/storage questions

2008-08-22 Thread Edward Jaffe

Pedro Vera wrote:
I played with something similar many years ago.  IIRC, I used ESAR,  SSAR 
and MVCP instructions to pull information from other address spaces.  You 
start out with addresses that are in common, such as ASCB, then work your 
way down pointer chains.  It is mainly useful for system control blocks.
  


SSAR will abend with a reusable ASID.

--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
[EMAIL PROTECTED]
http://www.phoenixsoftware.com/

--
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: VSMLIST Data

2008-08-22 Thread Peter Relson
SUBPOOL 230  KEY 05  OWNED BY TCB 008FF050
ADDRESS 008C4000  LENGTH 1000
FREE AREA 008C4000  LENGTH 0060
FREE AREA 008C40B8  LENGTH 0F48
ADDRESS 008C5000  LENGTH 1000
FREE AREA 008C5000  LENGTH 0030
FREE AREA 008C50B8  LENGTH 0F48

What is it telling me by having multiple addresses and multiple free
areas?  Or maybe another question would be what caused that?  I know it
isn't just accounting for each 4k because sometimes the address length
portion is multiples of 4k.

I'm not sure what the real question is. It is accounting for every 4K but
not necessarily on each individual 4K.
The system has differing structures for different areas of storage. This is
simply showing you according to the area that the system chooses to be
managing.

Each of the above is saying that the area starting at address x for length
y is partially allocated. The parts not shown as free area are allocated.
The simplest case would be that there were some two getmains (or storage
obtains) and subsequently a freemain. For example, a getmain of x'F48'
followed by a getmain for x'58' followed by a freemain for x'F48' could
result in the pattern shown for 08C4000 / 1000.

Based on various criteria, an allocation may be satsified from the end of
a page or the beginning of a page when no sub-page area is available.

Why do you truly care? Usually, VSMLIST is used to check, for a particular
address, is it allocated or free.

Peter Relson
z/OS Core Technology Design
--
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: DFHSM Backup ignoring REUSE and doing MARKFULL for every scratch tape

2008-08-22 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Ted MacNEIL
 
 one at z/OS 1.08, one at 1.09
 
 Not to pick too many nits, but we, as IT professionals, do 
 attempt to be precise.
 Isn't it 1.8  1.9?

From TASID:

 MVS Information: z/OS   01.09.00 z/Arch
 JES Information: JES2 / z/OS 1.9 / HJE7740   

-jc-

--
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: VSMLIST Data

2008-08-22 Thread Lindy Mayfield
Thanks Peter.  I did more experimenting and you pretty much confirmed
what I think I found.

If I allocate multiple blocks worth of storage in one go it shows the
address and how many 4k blocks.  If I allocate multiple pages multiple
times and they aren't contiguous then it shows multiple allocations.

Then I assume if storage is freed which results in holes in the
allocations then that is shown.

Why do I care? Two reasons.  First I want to understand memory
management.  Second is I want to schedule an SRB into an address space
and know what memory it has allocated and the addresses of those
allocations.

Thanks!

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Relson
Sent: 22. elokuuta 2008 14:22
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: VSMLIST Data

SUBPOOL 230  KEY 05  OWNED BY TCB 008FF050
ADDRESS 008C4000  LENGTH 1000
FREE AREA 008C4000  LENGTH 0060
FREE AREA 008C40B8  LENGTH 0F48
ADDRESS 008C5000  LENGTH 1000
FREE AREA 008C5000  LENGTH 0030
FREE AREA 008C50B8  LENGTH 0F48

What is it telling me by having multiple addresses and multiple free
areas?  Or maybe another question would be what caused that?  I know it
isn't just accounting for each 4k because sometimes the address length
portion is multiples of 4k.

I'm not sure what the real question is. It is accounting for every 4K
but
not necessarily on each individual 4K.
The system has differing structures for different areas of storage. This
is
simply showing you according to the area that the system chooses to be
managing.

Each of the above is saying that the area starting at address x for
length
y is partially allocated. The parts not shown as free area are
allocated.
The simplest case would be that there were some two getmains (or storage
obtains) and subsequently a freemain. For example, a getmain of x'F48'
followed by a getmain for x'58' followed by a freemain for x'F48' could
result in the pattern shown for 08C4000 / 1000.

Based on various criteria, an allocation may be satsified from the end
of
a page or the beginning of a page when no sub-page area is available.

Why do you truly care? Usually, VSMLIST is used to check, for a
particular
address, is it allocated or free.

Peter Relson
z/OS Core Technology Design

--
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: Deferred mount and device allocation

2008-08-22 Thread Russell Witt
Victor,

Ron was correct that unless you have UNIT=AFF, it will always allocate all
three drives at initialization time. The reason is that you would never want
to be put into a allocation failure situation in the middle of a job. If
the program can handle being stopped half-way through and can then wait
for an allocation to become available; then that program should have used
dynamic-allocation and actually performed the allocation on an as needed
basis. But, if the allocation is done with JCL then it will be allocated at
initialization time to insure that everything the JCL said was required was
available at the time it started.

Russell Witt

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED]
Behalf Of Victor Zhang
Sent: Thursday, August 21, 2008 10:11 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Deferred mount and device allocation


Hi experts,
One question regarding tape deferred mount and device allocation, supposing
following JCL statements:
//STEP1  EXEC PGM=ADRDSSU,REGION=6144K
//SYSPRINT  DD  SYSOUT=*
//ODOC1 DD  DISP=NEW,DSN=TEST1.FILE1,
// LABEL=(1,SL),UNIT=VTAPE,RETPD=3,VOL=(,,,255)
//ODOC2 DD  DISP=NEW,DSN=TEST1.FILE2,
// LABEL=(1,SL),UNIT=VTAPE,RETPD=3,VOL=(,,,255)
//ODOC3 DD  DISP=NEW,DSN=TEST1.FILE3,
// LABEL=(1,SL),UNIT=VTAPE,RETPD=3,VOL=(,,,255)

Will JES2 try to allocate 3  tape deivces even the datasets are deferred to
mount(which is default when using stk vtss)? How to delay device allocation
before it is actually be opened?

Regards
Victor

--
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: A couple of memory/storage questions

2008-08-22 Thread Binyamin Dissen
On Fri, 22 Aug 2008 00:00:26 -0700 Edward Jaffe [EMAIL PROTECTED]
wrote:

:Pedro Vera wrote:
: I played with something similar many years ago.  IIRC, I used ESAR,  SSAR 
: and MVCP instructions to pull information from other address spaces.  You 
: start out with addresses that are in common, such as ASCB, then work your 
: way down pointer chains.  It is mainly useful for system control blocks.

:SSAR will abend with a reusable ASID.

So you go to the ASTE and do an SSAIR. No special logic required on current
processors (on older processor one must check for the feature) because SSAIR
will work just fine even if the facility is not enabled.

--
Binyamin Dissen [EMAIL PROTECTED]
http://www.dissensoftware.com

Director, Dissen Software, Bar  Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

--
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: tracking UNDISP. TASKS

2008-08-22 Thread Bob
Thanks guys... These answers ended up in me getting the RMF Spreadsheet 
tool.  Nice and THANKS! 

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



JCL parser

2008-08-22 Thread John McKown
Just to prove that I am indeed insane, I am attempting to write a JCL 
parser using the flex (lexical analyzer generator) and bison (parser 
generator) programs on Linux. Again, this is just so that I can learn how 
to use those tools, not for anything necessarily productive. However, on 
the off chance that I actually succeed, does anybody think that donating 
this to the CBT would be worth while? If so, what should the parser output 
be? I was thinking either a tree structure which describes the JCL, or 
maybe the JCL converted to an XML format output. What say ye?

-- 
Q: What do theoretical physicists drink beer from?
A: An EIN stein.

Maranatha!
John McKown

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



Share proceedings when being a GSE member

2008-08-22 Thread Jan Vanbrabant
Hi,

My company has a GSE (Guide Share Europe) membership number.
How can I get access to Share proceedings which require a Share User Login?

Jan


--
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: JCL parser

2008-08-22 Thread Binyamin Dissen
On Fri, 22 Aug 2008 09:05:41 -0500 John McKown [EMAIL PROTECTED] wrote:

:Just to prove that I am indeed insane, I am attempting to write a JCL 
:parser using the flex (lexical analyzer generator) and bison (parser 
:generator) programs on Linux. Again, this is just so that I can learn how 
:to use those tools, not for anything necessarily productive. However, on 
:the off chance that I actually succeed, does anybody think that donating 
:this to the CBT would be worth while? If so, what should the parser output 
:be? I was thinking either a tree structure which describes the JCL, or 
:maybe the JCL converted to an XML format output. What say ye?

XML makes sense, but there is always the option of internal text.

--
Binyamin Dissen [EMAIL PROTECTED]
http://www.dissensoftware.com

Director, Dissen Software, Bar  Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

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



Interop Systems - The Open Enterprise - The mainframe is n't dead after all

2008-08-22 Thread McKown, John
Fairly decent article from a person who went to the recent SHARE.

http://www1.interopsystems.com/analysis/the-mainframe-isnt-dead-after-all.html

quote
... But last week I had the occasion to visit SHARE, the premier mainframe 
conference, which was held in San Jose just down the road from where I live. 
Based on what I saw, there is one thing I can tell you for sure, and that is 
that Cobol is not dead. And neither is the mainframe.
/quote

--
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: Interrupting CICS and IMS transactions

2008-08-22 Thread Chris Mason
Jim

I tried to get onto the IMS-L list and failed miserably so I hope I am not 
wasting my time telling you what you have already been told - always a risk 
when cross-posting.

Fortunately I was able to check responses in the CICS-L list since I already 
subscribe to it.

I am looking at this purely on the assumption - aided a little by the reference 
to x system - that VTAM, SNA and 3270 are involved. Thus the limit of my 
contribution will be what can be done before CICS and/or IMS come into play.

Question marks were in short supply in your post but I am assuming also that 
there is a question buried in the statement the user would interrupt this 
processing somehow somewhere - perhaps I presume too much! It is this 
implied question I am going to tackle since - as far as I can see - it has not 
been tackled elsewhere until now.

-

Ideally you will be using the protocols associated with LU type 2 rather than 
those associated with LU type 0 as used with the 3270 data stream. We'll 
cover the less desirable option later.

You are probably using TN3270 for access to your CICS and IMS. Again we'll 
come to the considerations introduced by TN3270 later.

The protocols associated with LU type 2 include a bracket protocol and it is 
expected that programming will encapsulate whatever might constitute a 
logical transaction within a bracket starting with a begin bracket indicator 
and ending with an end bracket indicator in the request header (RH).

Within the bracket the protocols associated with LU type 2 require that the 
flow of request units is half-duplex flip-flop[1] as corresponds to normal 
human conversations - except in some cultures as my students were often 
quick to point out! There is a logical baton which at any one time is in the 
possession of one side of the session and only the side which possesses the 
baton may send a request unit (RU) - with one crucial exception. The baton is 
passed between the two with the change direction indicator in the RH - and, 
since as I was preparing this response I have been keeping an eye on what 
has been happening on the track in the Bird's Nest, SNA doesn't drop the 
baton - nor does it allow any violation of the protocols concerning when it can 
be handed over!

[1] There is another flavour of half-duplex, half-duplex contention, but this 
is 
not available to LU type 2.

When the other side is in possession of the baton, the baton can be 
requested using the Signal RU. It is up to the side receiving the Signal RU 
what it cares to do about it. The protocol is there in order to enable whatever 
work is being performed in conjunction with the current transaction to be 
interrupted. Whatever is done is under the control of the application running 
in 
the side in possession of the baton so that it can take whatever steps are 
necessary to ensure that the interruption is a clean one - with respect to 
the state of any data base involved for example.

Once the application has performed whatever work is necessary on having 
received a Signal RU - assuming it is not simply ignored, an RU can be sent 
with carries the change direction indicator in the RH to the side where, 
typically, the 3270 end-user is working. The end-user can now initiate a fresh 
transaction. Those who are keeping up with this description will have spotted 
that, in addition to carrying the change direction indicator, the RH will 
also 
carry the end bracket indicator.

How does the 3270 end-user, having decided that whatever he/she set up as 
the current transaction was, to judge from the time it is taking, a big 
mistake, 
stop the waste of time and resources and cause the Signal RU to be sent? 
The answer is the Attn key - or whatever function is provided by the 3270 
emulator to mimic pressing the Attn key such as dextrous clicking on an icon 
in a right button menu.

As implied by the preamble to all this, the answer applies strictly only when 
the protocols associated with LU type 2 are in use. The answer may extend to 
TN3270 but only when TN3270*E* protocols are in use since these provide for 
simulation of the Attn key.

The following is from RFC 2355:

quote

11.  The 3270 ATTN Key

The 3270 ATTN key is interpreted by many host applications in an SNA 
environment as an indication that the user wishes to interrupt the execution 
of the current process.  The Telnet Interrupt Process (IP) command was 
defined expressly for such a purpose, so it is used to implement support for 
the 3270 ATTN key.  This requires two things:

- TN3270E clients should provide as part of their keyboard mapping a single 
key or a combination of keys that map to the 3270 ATTN key.  When the user 
presses this key(s), the client should transmit a Telnet IP command to the 
server.

- TN3270E servers should translate the IP command received from a TN3270E 
client into the appropriate form and pass it along to the host application as 
an 
ATTN key.  In other words, the server representing an SLU in an 

Re: Interrupting CICS and IMS transactions

2008-08-22 Thread Mark Hammond
FYI,
The IMS-L has moved/changed, if you missed it, I copied the information
here:

=

Hello all IMS ListServ Users,

On August 1, 2008, the sponsorship of the IMS List Serv site will be
changing. We would like to thank University of Missouri, especially Len
Rugen for their many years of sponsorship. As Len has stated in the past
the reason for the change is that they are no longer supporting IMS at
their site.

The new sponsor will be BMC Software, yet all data and processes will be
managed by LSoft (the owner of ListServ software) on the LSoft servers. 

You should find that everything will work the same. The archives have
been transferred to the LSoft server. The only change you might have
would be email rules associated with the old name.

Please feel free to logon to the new server at IMSListServ.bmc.com to
update your profile if needed. All help, commands and user information
will be available at that site.

The new name to direct messages to all users will be
[EMAIL PROTECTED]

If you have any questions, feel free to contact us via the ListServ or
[EMAIL PROTECTED]

Thanks,
Nick Griffin

==

Mark Hammond
-Original Message-
From: Chris Mason [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 22, 2008 9:24 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Interrupting CICS and IMS transactions

Jim

I tried to get onto the IMS-L list and failed miserably so I hope I am
not 
wasting my time telling you what you have already been told - always a
risk 
when cross-posting.

--
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: Share proceedings when being a GSE member

2008-08-22 Thread Bob Shannon
Contact SHARE Headquarters and ask whether there is any provision for GSE 
members to access the proceedings.

Bob Shannon

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



TPX and two RACF systems

2008-08-22 Thread Mark T. Regan, K8MTR
We run a sysplex that has two separate RACF databases. One database 
supports our test and development systems (3 LPARS) and the other supports our 
production systems (2 LPARS). We run TPX only on one of the production 
systems.  The question  has come up about using TPX to keep the users password 
in sync on both RACF databases. Since the users don't always use the same set 
of applications on the test side, is there some other way for TPX use some sort 
of RACF interface on the test side? If not with TPX, can the two RACF systems 
talk to each other, so that if the password is changed on the production side, 
it propagates the password change to the test RACF system?
 
Thanks.
 Mark T. Regan, K8MTR
CTO1 USNR-Retired (1969-1991) 

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



Accessing IMS-L (tangent from Interrupting CICS and IMS transactions)

2008-08-22 Thread Chris Mason
Mark

Thanks. I am now able to access the archives of IMS-L.

I seemed to be being taken down the same road as before but this time I got 
told my suggested password was too short. After that all was sweetness and 
light!

Chris Mason

On Fri, 22 Aug 2008 09:44:53 -0500, Mark Hammond 
[EMAIL PROTECTED] wrote:

FYI,
The IMS-L has moved/changed, if you missed it, I copied the information
here:

 ...

--
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: TPX and two RACF systems

2008-08-22 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of Mark T. Regan, K8MTR
 Sent: Friday, August 22, 2008 9:56 AM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: TPX and two RACF systems
 
 We run a sysplex that has two separate RACF databases. One 
 database supports our test and development systems (3 LPARS) 
 and the other supports our production systems (2 LPARS). We 
 run TPX only on one of the production systems.  The question  
 has come up about using TPX to keep the users password in 
 sync on both RACF databases. Since the users don't always use 
 the same set of applications on the test side, is there some 
 other way for TPX use some sort of RACF interface on the test 
 side? If not with TPX, can the two RACF systems talk to each 
 other, so that if the password is changed on the production 
 side, it propagates the password change to the test RACF system?
  
 Thanks.

RRSF (a part of RACF) can keep the RACF databases in sync. It communicates, 
IIRC, via APPC. You might want to ask how to set RRSF up on the RACF-L list. I 
don't know.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged and/or 
confidential.  It is for intended addressee(s) only.  If you are not the 
intended recipient, you are hereby notified that any disclosure, reproduction, 
distribution or other use of this communication is strictly prohibited and 
could, in certain circumstances, be a criminal offense.  If you have received 
this e-mail in error, please notify the sender by reply and delete this message 
without copying or disclosing it.  

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



URGENT: dynamic terminal names (funny to me)

2008-08-22 Thread McKown, John
This just happened here. We dynamically create the terminal names in
TN3270. Well, today a generate name was D08VF-CK (you know what the -
is). The end user opened a ticket to complain about this obscene name. I
found it funny. I guess that I'm going to have to change the dynamic
names so that alphabetics are disallowed. But then somebody will
complain about something like D08VFCKR, now won't they?

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

--
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: TPX and two RACF systems

2008-08-22 Thread Ted MacNEIL
You might want to ask how to set RRSF up on the RACF-L list. I don't know.

I would read the funny manuals first, then ask question.

PS: I don't believe TPX can synchronise passwords.
It only depends on them being the same, or you've negated one of its primary 
purposes.
-
Too busy driving to stop for gas!

--
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: URGENT: dynamic terminal names (funny to me)

2008-08-22 Thread Ted MacNEIL
The end user opened a ticket to complain about this obscene name.

Your end user has too much time on their hands.

We once had a z/990 with a serial number of 04ABFD.
I never told anybody why it always made me laugh.
People were also amazed why I never forgot it.
Especially, since I could never remember the z/890's serial number.

-
Too busy driving to stop for gas!

--
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: URGENT: dynamic terminal names (funny to me)

2008-08-22 Thread Ken Porowski
Associated British Film Distributors 
Association of British Factors and Discounters   
Atlantic Beach Fire Department 

-Original Message-
Ted MacNEIL

The end user opened a ticket to complain about this obscene name.

Your end user has too much time on their hands.

We once had a z/990 with a serial number of 04ABFD.
I never told anybody why it always made me laugh.
People were also amazed why I never forgot it.
Especially, since I could never remember the z/890's serial number.

-
Too busy driving to stop for gas!

--
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: TPX and two RACF systems

2008-08-22 Thread Rick Fochtman

---snip-
We run a sysplex that has two separate RACF databases. One database 
supports our test and development systems (3 LPARS) and the other 
supports our production systems (2 LPARS). We run TPX only on one of the 
production systems.  The question  has come up about using TPX to keep 
the users password in sync on both RACF databases. Since the users don't 
always use the same set of applications on the test side, is there some 
other way for TPX use some sort of RACF interface on the test side? If 
not with TPX, can the two RACF systems talk to each other, so that if 
the password is changed on the production side, it propagates the 
password change to the test RACF system?

---unsnip-
Possibly dumb question: why not merge the two databases into one?

--
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: TPX and two RACF systems

2008-08-22 Thread Mark T. Regan, K8MTR
It probably goes back to when we had two separate data centers, 
with production in one and test  development in another. No one wants to 
tackle mergering them. 

 Mark T. Regan, K8MTR
CTO1 USNR-Retired (1969-1991)



- Original Message 
From: Rick Fochtman [EMAIL PROTECTED]
To: IBM-MAIN@BAMA.UA.EDU
Sent: Friday, August 22, 2008 11:31:10 AM
Subject: Re: TPX and two RACF systems

---snip-
We run a sysplex that has two separate RACF databases. One database 
supports our test and development systems (3 LPARS) and the other 
supports our production systems (2 LPARS). We run TPX only on one of the 
production systems.  The question  has come up about using TPX to keep 
the users password in sync on both RACF databases. Since the users don't 
always use the same set of applications on the test side, is there some 
other way for TPX use some sort of RACF interface on the test side? If 
not with TPX, can the two RACF systems talk to each other, so that if 
the password is changed on the production side, it propagates the 
password change to the test RACF system?
---unsnip-

Possibly dumb question: why not merge the two databases into one?

--
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 those who want to get rid of old-fashioned password and racf exits

2008-08-22 Thread Dr. Stephen Fedtke
here is an info, just in case you need/want to get rid of old-fashioned
password and other racf exits:

http://www.fedtke.com/sf_noevasion.htm

best
stephen

--
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: URGENT: dynamic terminal names (funny to me)

2008-08-22 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of McKown, John
 
 This just happened here. We dynamically create the terminal 
 names in TN3270. Well, today a generate name was D08VF-CK 
 (you know what the - is). The end user opened a ticket to 
 complain about this obscene name. I found it funny. I guess 
 that I'm going to have to change the dynamic names so that 
 alphabetics are disallowed. But then somebody will complain 
 about something like D08VFCKR, now won't they?

Just change the 08V part to UMB.

Then start running.

-jc-

--
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: URGENT: dynamic terminal names (funny to me)

2008-08-22 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Ted MacNEIL
 
 The end user opened a ticket to complain about this obscene name.
 
 Your end user has too much time on their hands.
 
 We once had a z/990 with a serial number of 04ABFD.
 I never told anybody why it always made me laugh.
 People were also amazed why I never forgot it.
 Especially, since I could never remember the z/890's serial number.

Nowadays you can buy pills for the first serial number.

-jc-

--
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: Printing PDF's on INFOPRINT 4000 Printers

2008-08-22 Thread Howard Turetzky
The best place to start is by reading the Infoprint Server User's Guide, 
S544-5746-08, 
Chapter 8. Printing from Windows systems, which has instructions for 
installing and 
configuring the Infoprint Port Monitor. Port 515 is the default port, and the 
hostname (or 
IP 
address) will be the address of the TCP/IP stack supporting Infoprint Server on 
your host 
system, for which you'll need to consult your systems programmer.

If your PSF printer is on another system, you will need to be sure your 
Infoprint Server 
administrator has configured a printer definition that will route your job to 
the system 
running PSF (or if JES2 shared spool, the correct JES work selection).

The printers you see in the Port Monitor (when you have the right port and 
address you 
will see a list of printers) are actually printer definitions in the Infoprint 
Server Printer 
Inventory. They represent logical printers, and you need to know which one is 
the 
correct definition to use for submitting MO:DCA jobs (that's what the AFP Print 
Driver 
produces) to the correct DEST/FORMS/CLASS for your PSF-driven Infoprint 4000 
printer.


Howard Turetzky
Advanced Technical Support, M/S 004H Dept ME7
InfoPrint Solutions Company
6300 Diagonal Hwy, Boulder, CO 80301
[EMAIL PROTECTED]

--
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: TPX and two RACF systems

2008-08-22 Thread Mark Zelden
On Fri, 22 Aug 2008 10:09:08 -0500, McKown, John
[EMAIL PROTECTED] wrote:

 can the two RACF systems talk to each
 other, so that if the password is changed on the production
 side, it propagates the password change to the test RACF system?
  


RRSF (a part of RACF) can keep the RACF databases in sync. It 
communicates, IIRC, via APPC. You might want to ask how to set RRSF up on
the RACF-L list. I don't know.


We use RRSF between 2 sysplexes and it works great.  Some things don't
propegate (like certificates).  The details are in the fine manual.

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ICHZA780/12.0?SHELF=ICHZBK81DT=20070502112744

Entire RACF bookshelf (z/OS 1.9):
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/ICHZBK81

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html



Re: TPX and two RACF systems

2008-08-22 Thread Mark T. Regan, K8MTR
We also have the Courion PasswordCourier product installed. It's mainly used to 
reset passwords via a web or phone interface, so only the IP interface is being 
used. Does anyone know if it has a VTAM 3270 interface of any kind so that TPX 
can use a ACL to change the password using it?

Thanks

Mark T. Regan, K8MTR
CTO1 USNR-Retired (1969-1991)



- Original Message 
From: Mark Zelden [EMAIL PROTECTED]
To: IBM-MAIN@BAMA.UA.EDU
Sent: Friday, August 22, 2008 12:08:37 PM
Subject: Re: TPX and two RACF systems

On Fri, 22 Aug 2008 10:09:08 -0500, McKown, John
[EMAIL PROTECTED] wrote:

 can the two RACF systems talk to each
 other, so that if the password is changed on the production
 side, it propagates the password change to the test RACF system?
  


RRSF (a part of RACF) can keep the RACF databases in sync. It 
communicates, IIRC, via APPC. You might want to ask how to set RRSF up on
the RACF-L list. I don't know.


We use RRSF between 2 sysplexes and it works great.  Some things don't
propegate (like certificates).  The details are in the fine manual.

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ICHZA780/12.0?SHELF=ICHZBK81DT=20070502112744

Entire RACF bookshelf (z/OS 1.9):
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/ICHZBK81

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
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 [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: TPX and two RACF systems

2008-08-22 Thread Ted MacNEIL
We also have the Courion PasswordCourier product installed.
It's mainly used to reset passwords via a web or phone interface, so only the 
IP interface is being used.
Does anyone know if it has a VTAM 3270 interface of any kind so that TPX can 
use a ACL to change the password using it?

Even if it could, TPX is designed to be a single sign-on package, not a 
security package.
A lot of its data is passed in clear text.

I would go with RRSF (which I believe is no additional charge), or merging the 
databases.
-
Too busy driving to stop for gas!

--
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: Share proceedings when being a GSE member

2008-08-22 Thread John Eells

Bob Shannon wrote:

Contact SHARE Headquarters and ask whether there is any provision for GSE 
members to access the proceedings.

Bob Shannon
snip


I believe they are all publicly accessible now without logging in.  Try it!

--
John Eells
z/OS Technical Marketing
IBM Poughkeepsie
[EMAIL PROTECTED]

--
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: Share proceedings when being a GSE member

2008-08-22 Thread Jan Vanbrabant
Bob Shannon wrote: 
 Contact SHARE Headquarters and ask whether there is any provision for GSE 
 members to access the proceedings. 
 
Thanks John. I left them a msg, but I got an out_of_offic msg back from  Abbey 
Nystedt . Hence wait-n-see.

John Eells 
I believe they are all publicly accessible now without logging in. Try it! 
 
Yes, I already got some in the past. But I tried to downlaod 2 presentations 
from the Orlando Share, and for both of them, I had to login.
In the mean time, I contacted one of the speakers directly, and got his 
presentation.
Thanks for caring!
Jan



--
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: Share proceedings when being a GSE member

2008-08-22 Thread John Eells

Jan Vanbrabant wrote:
Bob Shannon wrote: 
Contact SHARE Headquarters and ask whether there is any provision for GSE members to access the proceedings. 


Thanks John. I left them a msg, but I got an out_of_offic msg back from  Abbey 
Nystedt . Hence wait-n-see.

John Eells 
I believe they are all publicly accessible now without logging in. Try it! 


Yes, I already got some in the past. But I tried to downlaod 2 presentations 
from the Orlando Share, and for both of them, I had to login.
In the mean time, I contacted one of the speakers directly, and got his 
presentation.
Thanks for caring!
Jan

snip

It might be true that it's just the ones from SHARE 111 (last week in 
San Jose) forward.


--
John Eells
z/OS Technical Marketing
IBM Poughkeepsie
[EMAIL PROTECTED]

--
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: Share proceedings when being a GSE member

2008-08-22 Thread Edward Jaffe

John Eells wrote:
It might be true that it's just the ones from SHARE 111 (last week in 
San Jose) forward.


I believe that for many years SHARE has made the current conference 
proceedings public. Past proceedings require credentialed login.


--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
[EMAIL PROTECTED]
http://www.phoenixsoftware.com/

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



Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Which parameter on IEAMSCHD tells it the address space it is to run in?

 

Basic I know.  It'll be my first SRB.


--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Edward Jaffe

Lindy Mayfield wrote:

Which parameter on IEAMSCHD tells it the address space it is to run in?
  


Why not RTFM?

TARGETSTOKEN=xtargetstoken
   is the name (RS-type), or address in register
   (2)-(12), of a required 64 bit input which
   contains the Space Token (STOKEN) of the address
   space in which the SRB routine is to receive
   control.

--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
[EMAIL PROTECTED]
http://www.phoenixsoftware.com/

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread (IBM Mainframe Discussion List)
 
 
In a message dated 8/22/2008 1:55:15 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
Which parameter on IEAMSCHD tells it the address space it is to run  in?
 
TARGETSTOKEN.  Specifies the space token (STOKEN) of the address  space in 
which the SRB routine is to receive control [meaning run in].
 
Next you'll have to find out how to get the STOKEN for the address space in  
which you are interested.  I don't know for sure, but I would try looking  in 
the ASCB DSECT (the macro is named IHAASCB).
 
It'll be my first SRB.
 
Good luck.  :-)
 
Bill  Fairchild
Rocket Software





**It's only a deal if it's where you want to go. Find your travel 
deal here.  
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Rob Scott
Lindy,

I would suggest doing some searching in the IBM-Main archives (or use the 
Google groups interface) - have a look for IEAMSCHD or snooping - there have 
been quite a few interesting discussions about this topic in the past - 
including some pearls of wisdom from people in the know - for example Peter 
Relson, Chris Craddock, Ed Jaffe and Jim Mulder.


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of (IBM 
Mainframe Discussion List)
Sent: 22 August 2008 20:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD



In a message dated 8/22/2008 1:55:15 P.M. Central Daylight Time, [EMAIL 
PROTECTED] writes:
Which parameter on IEAMSCHD tells it the address space it is to run  in?

TARGETSTOKEN.  Specifies the space token (STOKEN) of the address  space in 
which the SRB routine is to receive control [meaning run in].

Next you'll have to find out how to get the STOKEN for the address space in 
which you are interested.  I don't know for sure, but I would try looking  in 
the ASCB DSECT (the macro is named IHAASCB).

It'll be my first SRB.

Good luck.  :-)

Bill  Fairchild
Rocket Software





**It's only a deal if it's where you want to go. Find your travel 
deal here.
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

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



31-bit

2008-08-22 Thread Daniel McLaughlin
We still have some legacy systems that run in 31-bit land. Once long ago I had 
the instructions on modifying LE into separate libraries, but that was on a PC 
that smoked out.

Do any of you fine people have those instructions? I think it's either CEEDOPT 
or CEEUOPT...

Thank you in advance.

--
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: 31-bit

2008-08-22 Thread Ted MacNEIL
We still have some legacy systems that run in 31-bit land

I don't understand your problem!
Most applications run in 31-bit land.

Under z/OS, only data is in 64-bit land.
-
Too busy driving to stop for gas!

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Oh I did.  And have been, over and over.

I misunderstood something then.  I thought that the STOKEN's were some
way for the SRB to be sure which address space it was running in, and
that the STOKEN's were shared: one in the target and one in the
originating. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Edward Jaffe
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy Mayfield wrote:
 Which parameter on IEAMSCHD tells it the address space it is to run
in?
   

Why not RTFM?

TARGETSTOKEN=xtargetstoken
is the name (RS-type), or address in register
(2)-(12), of a required 64 bit input which
contains the Space Token (STOKEN) of the address
space in which the SRB routine is to receive
control.

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
I did that.  I hate asking a question before trying every avenue.

I looked for IEAMSCHD but not snooping.  I found a few things, for
example something from David about making a target AS non-swappable, a
few things about recovery, and a few about performance.  I'll look
again, thanks for the tip.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Rob Scott
Sent: 22. elokuuta 2008 22:20
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

I would suggest doing some searching in the IBM-Main archives (or use
the Google groups interface) - have a look for IEAMSCHD or snooping -
there have been quite a few interesting discussions about this topic in
the past - including some pearls of wisdom from people in the know -
for example Peter Relson, Chris Craddock, Ed Jaffe and Jim Mulder.


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Another thing that isn't helping, I'm only slightly embarrassed to say,
is I don't know yet what an STOKEN or an ALET is.  I'm trying.  Not easy
because so many hits in the docs. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Edward Jaffe
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy Mayfield wrote:
 Which parameter on IEAMSCHD tells it the address space it is to run
in?
   

Why not RTFM?

TARGETSTOKEN=xtargetstoken
is the name (RS-type), or address in register
(2)-(12), of a required 64 bit input which
contains the Space Token (STOKEN) of the address
space in which the SRB routine is to receive
control.

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



Catalog Error - Can't delete dataset

2008-08-22 Thread Jeffrey Deaver
I can't delete a dataset which is cataloged, but no longer physically
exists.  I've tried every trick I can think of to delete the catalog entry,
nothing is working.  Ideas?   Ran a Diag on the catalog, got this...

IDC21364I ERROR DETECTED BY DIAGNOSE:
  ICFCAT ENTRY: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 (A)
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
  OFFSET: X'0063'
  REASON: 51 - VVDS ENTRY NOT FOUND. SCAN VVDS FAILED.
IDC21365I ICFCAT RECORD DISPLAY:
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
00  007D004D C101 2DC7D9D6 E4D74BD7   C3D3C1C9 D4E24BD3 D6C14BE3
D1D1F4F9   *.'.(AGROUP.PCLAIMS.LOA.TJJ49*
20  D4C9C74B C4F2F0F0 F2F2F6F2 4BE3F1F4   F3F9F2F5 F519 2607
D7D9C9D4   *MIG.D2002262.T1439255...PRIM*
40  C1D9E800 08E2 E3C1D5C4 C1D9C400   1401  0890
243F   *ARYSTANDARD.*
60  0C00 1A0480D7 D9D2F0F0 F1301020   0F880001  0020 00
*...PRK001   *

Thanks.

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Dave Day

An STOKEN identifies a unique instantiation of an address space.

An ALET is a value that is obtained from an ALESERV ADD.  It is used in 
Access Register mode to access the segment tables and the page tables(the 
storage) in an address space or data space that is not the home.
- Original Message - 
From: Lindy Mayfield [EMAIL PROTECTED]

Newsgroups: bit.listserv.ibm-main
To: IBM-MAIN@BAMA.UA.EDU
Sent: Friday, August 22, 2008 3:01 PM
Subject: Re: Trying to figure out IEAMSCHD



Another thing that isn't helping, I'm only slightly embarrassed to say,
is I don't know yet what an STOKEN or an ALET is.  I'm trying.  Not easy
because so many hits in the docs. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Edward Jaffe
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy Mayfield wrote:

Which parameter on IEAMSCHD tells it the address space it is to run

in?




Why not RTFM?

TARGETSTOKEN=xtargetstoken
   is the name (RS-type), or address in register
   (2)-(12), of a required 64 bit input which
   contains the Space Token (STOKEN) of the address
   space in which the SRB routine is to receive
   control.

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Rob Scott
If that is the case - I think you might be trying to run before you can walk.

I think you be better served, perhaps, writing yourself a program to store and 
access data in a dataspace before you start playing with SRBs - the MVS 
Extended Addressability manual is a good place to start.

Once you are familiar with that style of cross-memory programming (it will get 
you used to STOKENs, ALETs, access regs etc etc) - then perhaps you will be 
more comfortable with what is required for SRB routines.


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Lindy Mayfield
Sent: 22 August 2008 21:01
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Another thing that isn't helping, I'm only slightly embarrassed to say, is I 
don't know yet what an STOKEN or an ALET is.  I'm trying.  Not easy because so 
many hits in the docs. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Edward Jaffe
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy Mayfield wrote:
 Which parameter on IEAMSCHD tells it the address space it is to run
in?


Why not RTFM?

TARGETSTOKEN=xtargetstoken
is the name (RS-type), or address in register
(2)-(12), of a required 64 bit input which
contains the Space Token (STOKEN) of the address
space in which the SRB routine is to receive
control.

--
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: JCL parser

2008-08-22 Thread Thomas David Rivers

John McKown wrote:
Just to prove that I am indeed insane, I am attempting to write a JCL 
parser using the flex (lexical analyzer generator) and bison (parser 
generator) programs on Linux. Again, this is just so that I can learn how 
to use those tools, not for anything necessarily productive. However, on 
the off chance that I actually succeed, does anybody think that donating 
this to the CBT would be worth while? If so, what should the parser output 
be? I was thinking either a tree structure which describes the JCL, or 
maybe the JCL converted to an XML format output. What say ye?




Hi John,

 flex on an ASCII box will not generate a lexer that works
 in an EBCDIC environment; so you'll need to address that...

 I'd suggest writting the lexer by-hand, it's not difficult
 to knock out a regular-expression based parser, and you can
 handle the various hosting issues pretty straightforwardly.

 Of course, bison deals in tokens - which are sufficiently
 abstract to not have ASCII/EBCDIC issues.

 By the way - you can download flex/bison utilities that run
 on MVS from the 'freebies' section on our web site.


- Dave Rivers -

--
[EMAIL PROTECTED]Work: (919) 676-0847
Get your mainframe programming tools at http://www.dignus.com

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Don Holstein
Have you tried delete noscratch. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Jeffrey Deaver
Sent: Friday, August 22, 2008 4:05 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Catalog Error - Can't delete dataset

I can't delete a dataset which is cataloged, but no longer physically
exists.  I've tried every trick I can think of to delete the catalog
entry,
nothing is working.  Ideas?   Ran a Diag on the catalog, got this...

IDC21364I ERROR DETECTED BY DIAGNOSE:
  ICFCAT ENTRY: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 (A)
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
  OFFSET: X'0063'
  REASON: 51 - VVDS ENTRY NOT FOUND. SCAN VVDS FAILED.
IDC21365I ICFCAT RECORD DISPLAY:
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
00  007D004D C101 2DC7D9D6 E4D74BD7   C3D3C1C9 D4E24BD3 D6C14BE3
D1D1F4F9   *.'.(AGROUP.PCLAIMS.LOA.TJJ49*
20  D4C9C74B C4F2F0F0 F2F2F6F2 4BE3F1F4   F3F9F2F5 F519 2607
D7D9C9D4   *MIG.D2002262.T1439255...PRIM*
40  C1D9E800 08E2 E3C1D5C4 C1D9C400   1401  0890
243F   *ARYSTANDARD.*
60  0C00 1A0480D7 D9D2F0F0 F1301020   0F880001  0020
00
*...PRK001   *

Thanks.

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

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



-
The information contained in this e-mail message is intended only
for the personal and confidential use of the recipient(s) named
above. This message may be an attorney-client communication and/or
work product and as such is privileged and confidential. If the
reader of this message is not the intended recipient or an agent
responsible for delivering it to the intended recipient, you are
hereby notified that you have received this document in error and
that any review, dissemination, distribution, or copying of this
message is strictly prohibited. If you have received this
communication in error, please notify us immediately by e-mail, and
delete the original message.

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread O'Brien, David W. (NIH/CIT) [C]
Did you try:
Idcams
Delete dataset.name NSCR



From: Jeffrey Deaver [mailto:[EMAIL PROTECTED]
Sent: Fri 8/22/2008 4:05 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Catalog Error - Can't delete dataset



I can't delete a dataset which is cataloged, but no longer physically
exists.  I've tried every trick I can think of to delete the catalog entry,
nothing is working.  Ideas?   Ran a Diag on the catalog, got this...

IDC21364I ERROR DETECTED BY DIAGNOSE:
  ICFCAT ENTRY: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 (A)
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
  OFFSET: X'0063'
  REASON: 51 - VVDS ENTRY NOT FOUND. SCAN VVDS FAILED.
IDC21365I ICFCAT RECORD DISPLAY:
  RECORD: GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 /00
00  007D004D C101 2DC7D9D6 E4D74BD7   C3D3C1C9 D4E24BD3 D6C14BE3
D1D1F4F9   *.'.(AGROUP.PCLAIMS.LOA.TJJ49*
20  D4C9C74B C4F2F0F0 F2F2F6F2 4BE3F1F4   F3F9F2F5 F519 2607
D7D9C9D4   *MIG.D2002262.T1439255...PRIM*
40  C1D9E800 08E2 E3C1D5C4 C1D9C400   1401  0890
243F   *ARYSTANDARD.*
60  0C00 1A0480D7 D9D2F0F0 F1301020   0F880001  0020 00
*...PRK001   *

Thanks.

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Jeffrey Deaver
Have you tried delete noscratch.

Yep.  Got this...

IDCAMS  SYSTEM SERVICES   TIME: 15

   DELETE -
   GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 -
   PURGE  -
   NOSCRATCH
IDC3014I CATALOG ERROR
IDC3009I ** VSAM CATALOG RETURN CODE IS 90 - REASON CODE IS IGG0CLFO-54
IDC0551I ** ENTRY GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 NOT
IDC0551I DELETED
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 8

IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 8


Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread O'Brien, David W. (NIH/CIT) [C]
How can you PURGE a non-existant dataset?



From: Jeffrey Deaver [mailto:[EMAIL PROTECTED]
Sent: Fri 8/22/2008 4:22 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Catalog Error - Can't delete dataset



Have you tried delete noscratch.

Yep.  Got this...

IDCAMS  SYSTEM SERVICES   TIME: 15

   DELETE -
   GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 -
   PURGE  -
   NOSCRATCH
IDC3014I CATALOG ERROR
IDC3009I ** VSAM CATALOG RETURN CODE IS 90 - REASON CODE IS IGG0CLFO-54
IDC0551I ** ENTRY GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 NOT
IDC0551I DELETED
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 8

IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 8


Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread (IBM Mainframe Discussion List)
 
 
In a message dated 8/22/2008 3:01:38 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
I don't know yet what an STOKEN or an ALET is.
 
A token, in general, is an arbitrary value that is long enough so that all  
tokens for the same class of resource will be unique.  Whenever certain  kinds 
of events occur, a new, unique token is created and is always associated  with 
the resource involved with the event that just happened (a new address  space 
is created, e.g.).  An STOKEN is a token that is unique to a Space  (hence 
the S at the beginning of STOKEN), where space means address space.   There are 
other types of tokens in z/OS; e.g., each task in an address space has  a 
unique TCB token, each time an I/O configuration change occurs a new I/O  
configuration token is created, etc.  Tokens are used to identify uniquely  
which of a 
set of similar resources is to be involved with certain kinds of  system 
services.
 
Bill  Fairchild
Rocket Software





**It's only a deal if it's where you want to go. Find your travel 
deal here.  
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
My current goal is to run VSMLIST in a target address space.  And I can
be very persistent.  I've been working on this all week (vacation).

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Rob Scott
Sent: 22. elokuuta 2008 23:08
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

If that is the case - I think you might be trying to run before you can
walk.

I think you be better served, perhaps, writing yourself a program to
store and access data in a dataspace before you start playing with SRBs
- the MVS Extended Addressability manual is a good place to start.

Once you are familiar with that style of cross-memory programming (it
will get you used to STOKENs, ALETs, access regs etc etc) - then perhaps
you will be more comfortable with what is required for SRB routines.


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Wayne Driscoll
Lindy,
I have to agree with Rob, at a minimum read the Extended Addressability
manual, it is a good place to start on ALET's and STOKEN's.  Basically an
STOKEN is a 64 bit IPL span unique identifier for a SPACE (address, data or
hiper) in z/OS.  An ALET is a value that is used to link two spaces
together via synchronous cross memory, and is loaded into an access register
(AR) to allow one to access another space.  One requirement is that if the
target space is an address, or a dataspace owned by another address space,
then the target address space or owning address space needs to be
non-swappable for the duration of the operation.  While this project is
somewhat less work than your prior ones, it is still a big swamp full of
hungry croc's that you are wading into (with apologies to Chris Craddock for
shamelessly stealing a warning).  There are a number of us who have dug into
this and have some scars, some worn proudly, others hidden away as deeply as
we can.

Wayne Driscoll
Product Developer
NOTE:  All opinions are strictly my own.




-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Rob Scott
Sent: Friday, August 22, 2008 3:08 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

If that is the case - I think you might be trying to run before you can
walk.

I think you be better served, perhaps, writing yourself a program to store
and access data in a dataspace before you start playing with SRBs - the MVS
Extended Addressability manual is a good place to start.

Once you are familiar with that style of cross-memory programming (it will
get you used to STOKENs, ALETs, access regs etc etc) - then perhaps you will
be more comfortable with what is required for SRB routines.


Rob Scott
Rocket Software, Inc
275 Grove Street
Newton, MA 02466
617-614-2305
[EMAIL PROTECTED]


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Lindy Mayfield
Sent: 22 August 2008 21:01
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Another thing that isn't helping, I'm only slightly embarrassed to say, is I
don't know yet what an STOKEN or an ALET is.  I'm trying.  Not easy because
so many hits in the docs. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Edward Jaffe
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy Mayfield wrote:
 Which parameter on IEAMSCHD tells it the address space it is to run
in?


Why not RTFM?

TARGETSTOKEN=xtargetstoken
is the name (RS-type), or address in register
(2)-(12), of a required 64 bit input which
contains the Space Token (STOKEN) of the address
space in which the SRB routine is to receive
control.

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

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Johnston, Robert E
Had to go to 1.9 manual to find 90-54. Does this make any sense to you?

| 54  Explanation: DELETE failed because the data set is
   being renamed but it has not completed.

 | Programmer Response: Rename the data set with the
 | IDCAMS ALTER command and then delete it.



 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of Jeffrey Deaver
 Sent: Friday, August 22, 2008 3:22 PM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Re: Catalog Error - Can't delete dataset
 
 Have you tried delete noscratch.
 
 Yep.  Got this...
 
 IDCAMS  SYSTEM SERVICES   TIME: 15
 
DELETE -
GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 -
PURGE  -
NOSCRATCH
 IDC3014I CATALOG ERROR
 IDC3009I ** VSAM CATALOG RETURN CODE IS 90 - REASON CODE IS IGG0CLFO-54
 IDC0551I ** ENTRY GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 NOT
 IDC0551I DELETED
 IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 8
 
 IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 8
 
 
 Jeffrey Deaver, Engineer
 Systems Engineering
 [EMAIL PROTECTED]
 651-665-4231(v)
 IS - Creating competitive advantage with technology.  Providing service
 that excels.
 OSS -  Where Innovation Happens
 


Confidentiality Notice: This e-mail message, including any attachments, is for 
the sole use of the intended recipient(s) and may contain confidential and 
privileged information.  Any unauthorized review, use, disclosure or 
distribution is prohibited.  If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message.

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread (IBM Mainframe Discussion List)
 
 
In a message dated 8/22/2008 3:28:25 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
My current goal is to run VSMLIST in a target address space.
 
Whatever you try to do in an SRB routine, make sure you don't code any  
system services that have an SVC instruction in their macro expansions.   SVCs 
cannot be executed in SRB mode (except for the ABEND service, which uses an  
SVC). 
 Most system services now have a parameter that governs whether the  macro 
expansion will use an SVC or something else (PC or BALR  perhaps).


 
Bill  Fairchild
Rocket Software



**It's only a deal if it's where you want to go. Find your travel 
deal here.  
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Thanks, Bill.  VSMLIST uses a PC routine so I should be ok with that
one.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of (IBM Mainframe Discussion List)
Sent: 22. elokuuta 2008 23:36
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 3:28:25 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
My current goal is to run VSMLIST in a target address space.
 
Whatever you try to do in an SRB routine, make sure you don't code any  
system services that have an SVC instruction in their macro expansions.
SVCs 
cannot be executed in SRB mode (except for the ABEND service, which uses
an  SVC). 
 Most system services now have a parameter that governs whether the
macro 
expansion will use an SVC or something else (PC or BALR  perhaps).


 
Bill  Fairchild
Rocket Software

--
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: JCL parser

2008-08-22 Thread Schneiderwent, Craig
Is JCL LALR(1) ?  If not, I believe you will have to use a different parser
generator, perhaps ANTLR.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED]
Behalf Of John McKown
Sent: Friday, August 22, 2008 9:06 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: JCL parser


Just to prove that I am indeed insane, I am attempting to write a JCL 
parser using the flex (lexical analyzer generator) and bison (parser 
generator) programs on Linux. Again, this is just so that I can learn how 
to use those tools, not for anything necessarily productive. However, on 
the off chance that I actually succeed, does anybody think that donating 
this to the CBT would be worth while? If so, what should the parser output 
be? I was thinking either a tree structure which describes the JCL, or 
maybe the JCL converted to an XML format output. What say ye?

-- 
Q: What do theoretical physicists drink beer from?
A: An EIN stein.

Maranatha!
John McKown

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Linda Mooney
DSN looks like it could be an HSM level 1 migrate.  Is it?  Perhaps there is a 
recovery action needed for a failed migrate from HSM?

Linda Mooney

-- Original message -- 
From: Johnston, Robert E [EMAIL PROTECTED] 

 Had to go to 1.9 manual to find 90-54. Does this make any sense to you? 
 
 | 54 Explanation: DELETE failed because the data set is 
 being renamed but it has not completed. 
 
 | Programmer Response: Rename the data set with the 
 | IDCAMS ALTER command and then delete it. 
 
 
 
  -Original Message- 
  From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On 
  Behalf Of Jeffrey Deaver 
  Sent: Friday, August 22, 2008 3:22 PM 
  To: IBM-MAIN@BAMA.UA.EDU 
  Subject: Re: Catalog Error - Can't delete dataset 
  
  Have you tried delete noscratch. 
  
  Yep. Got this... 
  
  IDCAMS SYSTEM SERVICES TIME: 15 
  
  DELETE - 
  GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 - 
  PURGE - 
  NOSCRATCH 
  IDC3014I CATALOG ERROR 
  IDC3009I ** VSAM CATALOG RETURN CODE IS 90 - REASON CODE IS IGG0CLFO-54 
  IDC0551I ** ENTRY GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 NOT 
  IDC0551I DELETED 
  IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 8 
  
  IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 8 
  
  
  Jeffrey Deaver, Engineer 
  Systems Engineering 
  [EMAIL PROTECTED] 
  651-665-4231(v) 
  IS - Creating competitive advantage with technology. Providing service 
  that excels. 
  OSS -  Where Innovation Happens 
  
 
 
 Confidentiality Notice: This e-mail message, including any attachments, is 
 for 
 the sole use of the intended recipient(s) and may contain confidential and 
 privileged information. Any unauthorized review, use, disclosure or 
 distribution is prohibited. If you are not the intended recipient, please 
 contact the sender by reply e-mail and destroy all copies of the original 
 message. 
 
 -- 
 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: Catalog Error - Can't delete dataset

2008-08-22 Thread Jeffrey Deaver
Had to go to 1.9 manual to find 90-54. Does this make any sense to you?

| 54  Explanation: DELETE failed because the data set is
   being renamed but it has not completed.

 | Programmer Response: Rename the data set with the
 | IDCAMS ALTER command and then delete it.

Sort of.  The name tells me that this file is probably left over from a
simple process we have which automates the reallocation of files.  People
use it to expand/change the allocation.  File is temp copied to the file in
question, original file is deleted and reallocated, temp copy is copied
back and then (suppose to be) deleted.

Problem with the instruction set above - rename it to what?

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Jeffrey Deaver
 How can you PURGE a non-existant dataset?

Tried it both ways.  I get the same result without the PURGE.

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: JCL parser

2008-08-22 Thread John McKown
On Fri, 22 Aug 2008, Schneiderwent, Craig wrote:

 Is JCL LALR(1) ?  If not, I believe you will have to use a different parser
 generator, perhaps ANTLR.
 

That's a good question. And I'm so ignorant, I don't know how to tell. If 
it isn't, then I guess that I'll fail in my attempt.

-- 
Q: What do theoretical physicists drink beer from?
A: An EIN stein.

Maranatha!
John McKown

--
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: Catalog Error - Can't delete dataset

2008-08-22 Thread Jeffrey Deaver
Problem with the instruction set above - rename it to what?

So just to try renaming it to something...   Seems like everything I try
really wants the physical file there - which doesn't make sense since I've
run into rouge catalog entries before and not had trouble cleaning them up.
This one is being stubborn.

ALTER GROUP.PCLAIMS.LOA.TJJ49MIG.D2002262.T1439255 -
  NEWNAME(GROUP.PCLAIMS.LOA.JUNK) -
  CAT(ISV.SICF.USERCAT.VSYSP35)
IDC3014I CATALOG ERROR
IDC3009I ** VSAM CATALOG RETURN CODE IS 94 - REASON CODE IS IGG0CLRN-8

8   Explanation: OBTAIN did not find requested format-1
DSCB on specified volume.

Programmer Response: Ensure that the correct volume is
mounted

Jeffrey Deaver, Engineer
Systems Engineering
[EMAIL PROTECTED]
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Ok, Bill.  Lightbulb time.  It's tucked away in the ASSB. ASSBSTKN.  The
OS creates it when it creates an address space.  

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of (IBM Mainframe Discussion List)
Sent: 22. elokuuta 2008 22:07
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 1:55:15 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
Which parameter on IEAMSCHD tells it the address space it is to run
in?
 
TARGETSTOKEN.  Specifies the space token (STOKEN) of the address  space
in 
which the SRB routine is to receive control [meaning run in].
 
Next you'll have to find out how to get the STOKEN for the address space
in  
which you are interested.  I don't know for sure, but I would try
looking  in 
the ASCB DSECT (the macro is named IHAASCB).
 
It'll be my first SRB.
 
Good luck.  :-)
 
Bill  Fairchild
Rocket Software

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread (IBM Mainframe Discussion List)
 
 
In a message dated 8/22/2008 4:22:45 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
Ok, Bill.  Lightbulb time.  It's tucked away in the ASSB.  ASSBSTKN.  The OS 
creates it when it creates an address space.
 
Glad you found it.  I haven't yet learned a good rule of thumb as to  why 
some address space-related fields are in the ASCB, ASSB, or  the ASXB.
 
Sometimes I find the control block that has field X in it by doing an ISPF  
3.14 with something resembling X in the search field and the data set name is 
 first SYS1.MACLIB(*) and then SYS1.MODGEN(*) if necessary.


 
Bill  Fairchild
Rocket Software



**It's only a deal if it's where you want to go. Find your travel 
deal here.  
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

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



AllFusion Panvalet

2008-08-22 Thread Ward, Mike S
Hello all, I was wondering if any Panvalet users knew of a Panvalet
utility that would print a report showing the deltas of the source code.
I have already looked at the compare reference guide, but it requires
and old library and a new library for comparing. I was wondering if
there is a utility that would read a panvalet library and print that
information using only the one library.

==
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity
to which they are addressed. If you have received this email in error please 
notify the system manager. This message
contains confidential information and is intended only for the individual 
named. If you are not the named addressee you
should not disseminate, distribute or copy this e-mail. Please notify the 
sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your system. 
If you are not the intended recipient
you are notified that disclosing, copying, distributing or taking any action in 
reliance on the contents of this
information is strictly prohibited.


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



OA25485 NEW FUNCTION - FACILITY CLASS FOR RSM LARGE PAGE ACCESS

2008-08-22 Thread Knutson, Sam
Hi,

 

Interesting APAR discussed at SHARE to allow non-authorized to exploit
RSM large pages when permitted by the security product on z10 is closed
with PTFs.

 

APAR Identifier .. OA25485  Last Changed  08/08/20

  NEW FUNCTION - FACILITY CLASS FOR RSM LARGE PAGE ACCESS

Best Regards, 

Sam Knutson, GEICO 
Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 

Think big, act bold, start simple, grow fast...

 





 


This email/fax message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution of this
email/fax is prohibited. If you are not the intended recipient, please
destroy all paper and electronic copies of the original message.

--
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: AllFusion Panvalet

2008-08-22 Thread Linda Mooney
There is an entire manual devoted to it, available on the CA support site, 
AllFusion CA-Panvalet Compare Reference Guide.  I do not know if the Compare 
function costs more or not.  We have had Panvalet longer than CA has had it.  
We have always used another product for compares.  You can also WRITE the 
members to a PDS and then use your PDS compare tool of choice for PDS member 
compares.  Of course, if you are copy out replaced (suffixed) members you will 
need to rename them as you WRITE them to the PDS.

Linda Mooney 

-- Original message -- 
From: Ward, Mike S [EMAIL PROTECTED] 

 Hello all, I was wondering if any Panvalet users knew of a Panvalet 
 utility that would print a report showing the deltas of the source code. 
 I have already looked at the compare reference guide, but it requires 
 and old library and a new library for comparing. I was wondering if 
 there is a utility that would read a panvalet library and print that 
 information using only the one library. 
 
 == 
 This email and any files transmitted with it are confidential and intended 
 solely for the use of the individual or entity 
 to which they are addressed. If you have received this email in error please 
 notify the system manager. This message 
 contains confidential information and is intended only for the individual 
 named. 
 If you are not the named addressee you 
 should not disseminate, distribute or copy this e-mail. Please notify the 
 sender 
 immediately by e-mail if you 
 have received this e-mail by mistake and delete this e-mail from your system. 
 If 
 you are not the intended recipient 
 you are notified that disclosing, copying, distributing or taking any action 
 in 
 reliance on the contents of this 
 information is strictly prohibited. 
 
 
 -- 
 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: Catalog Error - Can't delete dataset

2008-08-22 Thread Arturo
Jeffrey, here are a few of the parameters that I have tried and have gotten 
the file deleted. Since, you didn’t post the commands that you’ve used. I 
figure that I send you what has worked for me in the pass. Hope this helps. 
Just review the parms in manual before using to make sure that we’ll work for 
you. 

1.

//DELNVR  EXEC PGM=IDCAMS  
//DD1  DD  VOL=SER=XX,UNIT=3390,DISP=OLD   
//SYSPRINT DD   SYSOUT=*   
//SYSINDD   *  
  DELETE DATASET NAME   -  
  FILE(DD1)  - 
  NVR  
2.
 
 //DELNOSC  EXEC PGM=IDCAMS
 //SYSPRINT DD   SYSOUT=*  
 //SYSINDD   * 
   DELETE   DATASET.NAME.MAR0707  -   
PURGE -
CAT(USERCAT.NAME)
   
3.

  //STEP13 EXEC PGM=IDCAMS 
//SYSPRINT DD SYSOUT=*   
//SYSIN DD * 
   DELETE  DATASET.NAME   NSCR  

4. For this one you need to leave the ver… as is. 

//SYSINDD *
 ZAP   BCS(USERCAT.NAME)  -
   DELETE(KEY(DATASET.NAME)  - 
   VER(04,C'A'))   
 

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



sFTP from/to z/OS best practices

2008-08-22 Thread Yukus, Mary J CIV USMEPCOM
Hi Everyone,
I'm looking for some advice on how best to set up users.  We are using the
SSH version (under INETD).  Right now we have successfully set up JCL to copy
files from z/OS to an OMVS directory and then using sftp, PUT it to another
server.  We have also successfully set up JCL to use sftp to GET a file from
another server and then copy it to z/OS.  We set up a large directory under a
separate HFS file to hold the files.  So as long as we drive the train
there's no problem.

Now comes the decisions, we have a user (outside our agency) that also has
outside users that will want to send their files via logon and sFTP to OMVS.
(vs. our user logging on their system to GET the file) 

We need to set up some type of area that our users (user's) can each place
their files but that can't be accessed by the other outside users.  

As a test we tried to create a file that has permissions where only the
creating user can see the file.  The real problem comes in here, when our
user tries to get the file out of OMVS, they can't because they don't have
permission.  We thought of giving her access to each file via a group, but if
OMVS is like LINUX, there is a limit as to how many groups you can be
attached to (26 on LINUX).  Since our user may have more than that, we're not
sure how to handle this.  Does anyone have any suggestions or way around
this?  (we are not strong in OMVS)

Thanks in advance for you help!

Mary :-) 

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Wayne Driscoll
Well basically the ASCB is always below the 16Mib line, so in 3.1 they
decided to create a 31 bit extension block, the ASSB.  The ASXB on the other
hand, is in the LSQA, not the SQA, so only contains fields that don't need
to be accessed from outside of the address space, and is swappable (granted,
with all supported versions of z/OS, physical swapping is a thing of the
past).  Also, I would be remiss if I didn't point out that the ASSBSTKN is
NOT part of the programming information.  That doesn't mean that it can't be
used, just don't be surprised if IBM won't support you if problems occur.

Wayne Driscoll
Product Developer
NOTE:  All opinions are strictly my own.




-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of (IBM Mainframe Discussion List)
Sent: Friday, August 22, 2008 4:35 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 4:22:45 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
Ok, Bill.  Lightbulb time.  It's tucked away in the ASSB.  ASSBSTKN.  The
OS 
creates it when it creates an address space.
 
Glad you found it.  I haven't yet learned a good rule of thumb as to  why 
some address space-related fields are in the ASCB, ASSB, or  the ASXB.
 
Sometimes I find the control block that has field X in it by doing an ISPF  
3.14 with something resembling X in the search field and the data set name
is 
 first SYS1.MACLIB(*) and then SYS1.MODGEN(*) if necessary.


 
Bill  Fairchild
Rocket Software



**It's only a deal if it's where you want to go. Find your
travel 
deal here.  
(http://information.travel.aol.com/deals?ncid=aoltrv000547)

--
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: JCL parser

2008-08-22 Thread Gerhard Postpischil

Thomas David Rivers wrote:

 By the way - you can download flex/bison utilities that run
 on MVS from the 'freebies' section on our web site. 
- Dave Rivers -


I just took a quick look - most of the text references OS/390. 
Does that mean things won't run on more current systems, or just 
that the page hasn't been updated since 2001?



Gerhard Postpischil
Bradford, VT

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Do mean this note in the data area?
Not an intended interface for other ASIDs.

Where is the correct place to get an ASID's STOKEN?

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Wayne Driscoll
Sent: 23. elokuuta 2008 2:21
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Also, I would be remiss if I didn't point out that the ASSBSTKN is
NOT part of the programming information.  That doesn't mean that it
can't be
used, just don't be surprised if IBM won't support you if problems
occur.

Wayne Driscoll
Product Developer
NOTE:  All opinions are strictly my own.

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Is it possible to get an SRB working, and then add on later all the
difficult stuff like recovery?

I got this far, and it runs to completion, but I can't tell if it worked
or not. (-:

Things I did:

* SYSEVENT DONTSWAP
* Get working storage
* Use LOCASCB to get address of my TSO session
* Chain to ASSB and get ASSBSTKN
* Move it to STOKEN
* MODESET to KEY(0)
* Schedule SRB.  STOKEN is ok otherwise it would abend SAC7 Reason
00080001

IEAMSCHD EPADDR=SRBADDR,PRIORITY=LOCAL,
ENV=STOKEN,TARGETSTOKEN=STOKEN   

* R15 = 0 if I S0C1 abend here and check 

* MODESET Back
* SYSEVENT OKSWAP
* Release Storage
* Return

---

SRBRTN DS  D   
   DC  X'' 
   BR  R14 


SRBADDR DC A(SRBRTN)
STOKEN  DS D


No abend, nothing.  I thought at least it would abend.  At best it would
abend my TSO session. No such luck.

I checked the archives for snooping.  Some good info there but nothing
about the basics that I could find.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of (IBM Mainframe Discussion List)
Sent: 22. elokuuta 2008 23:36
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 3:28:25 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
My current goal is to run VSMLIST in a target address space.
 
Whatever you try to do in an SRB routine, make sure you don't code any  
system services that have an SVC instruction in their macro expansions.
SVCs 
cannot be executed in SRB mode (except for the ABEND service, which uses
an  SVC). 
 Most system services now have a parameter that governs whether the
macro 
expansion will use an SVC or something else (PC or BALR  perhaps).


 
Bill  Fairchild
Rocket Software

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Blaicher, Chris
Lindy,

Look at the ,PTCBADDR=ptcbaddr parameter of IEAMSCHD. If you don't have
it or an FRR and the SRB fails, the SRB just goes away and doesn't tell
you anything.

Chris Blaicher

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: Friday, August 22, 2008 6:44 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Is it possible to get an SRB working, and then add on later all the
difficult stuff like recovery?

I got this far, and it runs to completion, but I can't tell if it worked
or not. (-:

Things I did:

* SYSEVENT DONTSWAP
* Get working storage
* Use LOCASCB to get address of my TSO session
* Chain to ASSB and get ASSBSTKN
* Move it to STOKEN
* MODESET to KEY(0)
* Schedule SRB.  STOKEN is ok otherwise it would abend SAC7 Reason
00080001

IEAMSCHD EPADDR=SRBADDR,PRIORITY=LOCAL,
ENV=STOKEN,TARGETSTOKEN=STOKEN   

* R15 = 0 if I S0C1 abend here and check 

* MODESET Back
* SYSEVENT OKSWAP
* Release Storage
* Return

---

SRBRTN DS  D   
   DC  X'' 
   BR  R14 


SRBADDR DC A(SRBRTN)
STOKEN  DS D


No abend, nothing.  I thought at least it would abend.  At best it would
abend my TSO session. No such luck.

I checked the archives for snooping.  Some good info there but nothing
about the basics that I could find.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of (IBM Mainframe Discussion List)
Sent: 22. elokuuta 2008 23:36
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 3:28:25 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
My current goal is to run VSMLIST in a target address space.
 
Whatever you try to do in an SRB routine, make sure you don't code any  
system services that have an SVC instruction in their macro expansions.
SVCs 
cannot be executed in SRB mode (except for the ABEND service, which uses
an  SVC). 
 Most system services now have a parameter that governs whether the
macro 
expansion will use an SVC or something else (PC or BALR  perhaps).


 
Bill  Fairchild
Rocket Software

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread David Kreiss
Lindy,

You might check the SYSLOG for S47B slip trap hits.  Also download the
LOGREC viewer from
http://www-03.ibm.com/servers/s390/os390/downloads/logrec_viewer.html
and install it.  You can see the logrec entries from ISPF panels.  There
will be a logrec entry for the abend.

Dave

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: Friday, August 22, 2008 4:44 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Is it possible to get an SRB working, and then add on later all the
difficult stuff like recovery?

I got this far, and it runs to completion, but I can't tell if it worked
or not. (-:

Things I did:

* SYSEVENT DONTSWAP
* Get working storage
* Use LOCASCB to get address of my TSO session
* Chain to ASSB and get ASSBSTKN
* Move it to STOKEN
* MODESET to KEY(0)
* Schedule SRB.  STOKEN is ok otherwise it would abend SAC7 Reason
00080001

IEAMSCHD EPADDR=SRBADDR,PRIORITY=LOCAL,
ENV=STOKEN,TARGETSTOKEN=STOKEN   

* R15 = 0 if I S0C1 abend here and check 

* MODESET Back
* SYSEVENT OKSWAP
* Release Storage
* Return

---

SRBRTN DS  D   
   DC  X'' 
   BR  R14 


SRBADDR DC A(SRBRTN)
STOKEN  DS D


No abend, nothing.  I thought at least it would abend.  At best it would
abend my TSO session. No such luck.

I checked the archives for snooping.  Some good info there but nothing
about the basics that I could find.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of (IBM Mainframe Discussion List)
Sent: 22. elokuuta 2008 23:36
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

 
 
In a message dated 8/22/2008 3:28:25 P.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:
My current goal is to run VSMLIST in a target address space.
 
Whatever you try to do in an SRB routine, make sure you don't code any  
system services that have an SVC instruction in their macro expansions.
SVCs 
cannot be executed in SRB mode (except for the ABEND service, which uses
an  SVC). 
 Most system services now have a parameter that governs whether the
macro 
expansion will use an SVC or something else (PC or BALR  perhaps).


 
Bill  Fairchild
Rocket Software

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Wow! I never knew what sorts of things were in the logrec.  I thought it
was only for hardware errors.  That's so great.  I see my program
abending there with a s0c1.

A nice, too, too.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of David Kreiss
Sent: 23. elokuuta 2008 2:58
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

You might check the SYSLOG for S47B slip trap hits.  Also download the
LOGREC viewer from
http://www-03.ibm.com/servers/s390/os390/downloads/logrec_viewer.html
and install it.  You can see the logrec entries from ISPF panels.  There
will be a logrec entry for the abend.

Dave

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
I spoke too soon. )-:  I get a S0C1 no matter what, when I take out the
x'' abend from the srb routine.  I moved values to GPR's but they
don't take.  Still it's a start.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 3:55
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Wow! I never knew what sorts of things were in the logrec.  I thought it
was only for hardware errors.  That's so great.  I see my program
abending there with a s0c1.

A nice, too, too.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of David Kreiss
Sent: 23. elokuuta 2008 2:58
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

You might check the SYSLOG for S47B slip trap hits.  Also download the
LOGREC viewer from
http://www-03.ibm.com/servers/s390/os390/downloads/logrec_viewer.html
and install it.  You can see the logrec entries from ISPF panels.  There
will be a logrec entry for the abend.

Dave

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Tom Harper
Lindy,

Where is your SRB routine located? It must be addressable from your new address 
space. Did you set the correct AMODE in the SRB?

Only reason I know is I've gotten this wrong before.

Tom Harper
IMS Utilities Development Team
NEON Enterprise Software, Inc.
Sugar Land, TX

- Original Message -
From: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
To: IBM-MAIN@BAMA.UA.EDU IBM-MAIN@BAMA.UA.EDU
Sent: Fri Aug 22 20:32:01 2008
Subject: Re: Trying to figure out IEAMSCHD

I spoke too soon. )-:  I get a S0C1 no matter what, when I take out the
x'' abend from the srb routine.  I moved values to GPR's but they
don't take.  Still it's a start.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 3:55
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Wow! I never knew what sorts of things were in the logrec.  I thought it
was only for hardware errors.  That's so great.  I see my program
abending there with a s0c1.

A nice, too, too.


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of David Kreiss
Sent: 23. elokuuta 2008 2:58
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

You might check the SYSLOG for S47B slip trap hits.  Also download the
LOGREC viewer from
http://www-03.ibm.com/servers/s390/os390/downloads/logrec_viewer.html
and install it.  You can see the logrec entries from ISPF panels.  There
will be a logrec entry for the abend.

Dave

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
Tom, 

I just stuck it a bit down in my program, after the schedule.

SRBRTN BR   R14

Perhaps I made a wrong assumption.  I saw a lot of stuff about SCHEDULE
that says it has to be in fixed memory, etc.  I saw nothing like that in
IEAMSCHD.

What do I need to do to put it in the correct AMODE?  That certainly
probably explains the S0C4's in the logrec!

Lindy

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Harper
Sent: 23. elokuuta 2008 4:43
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

Where is your SRB routine located? It must be addressable from your new
address space. Did you set the correct AMODE in the SRB?

Only reason I know is I've gotten this wrong before.

Tom Harper
IMS Utilities Development Team
NEON Enterprise Software, Inc.
Sugar Land, TX

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
I meant, after the IEAMSCHD schedule.

The sun is coming up.  Again. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 5:10
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Tom, 

I just stuck it a bit down in my program, after the schedule.

SRBRTN BR   R14

Perhaps I made a wrong assumption.  I saw a lot of stuff about SCHEDULE
that says it has to be in fixed memory, etc.  I saw nothing like that in
IEAMSCHD.

What do I need to do to put it in the correct AMODE?  That certainly
probably explains the S0C4's in the logrec!

Lindy

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Tom Harper
Lindy,

If your program is in your private area, it won't work if you're scheduling to 
a different address space. The SRB routine must normally reside in CSA or ECSA 
for a SCHEDULE to a different address space.

Tom

- Original Message -
From: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
To: IBM-MAIN@BAMA.UA.EDU IBM-MAIN@BAMA.UA.EDU
Sent: Fri Aug 22 21:11:37 2008
Subject: Re: Trying to figure out IEAMSCHD

I meant, after the IEAMSCHD schedule.

The sun is coming up.  Again. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 5:10
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Tom, 

I just stuck it a bit down in my program, after the schedule.

SRBRTN BR   R14

Perhaps I made a wrong assumption.  I saw a lot of stuff about SCHEDULE
that says it has to be in fixed memory, etc.  I saw nothing like that in
IEAMSCHD.

What do I need to do to put it in the correct AMODE?  That certainly
probably explains the S0C4's in the logrec!

Lindy

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



Dynamically add CP to running LPAR

2008-08-22 Thread Kreiter, Chuck
Is it possible to add a new CP or zAAP to a running LPAR or is it
necessary to do an activate on the LPAR after the activation profile is
updated? 
 
We went from a 2096-F01 to 2096-F02 and added a zAAP.  I'd really like
to add these w/o shutting down.
 
Thanks, 
 
Chuck Kreiter
Systems Supervisor
State Auto Insurance Companies www.stateauto.com
http://www.stateauto.com/ 
PO Box 182822, Columbus, OH 43218-2822
Phone: 614.917.5529  Fax: 614.719.0171  
State Auto is one of only 14 companies to earn an A+ Rating by AM Best
every year since 1954!  
 

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
You mean I have to allocate storage in the CSA and then copy the code
that resides in my address space over?  I can do that.

I didn't think of that because here for SCHEDULE it says just what you
said:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2A881/9.6.
2

But in the section for IEAMSCHD it doesn't mention that:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2A881/9.6.
1

I guess I'm supposed to know that. (-:  I do now. Thanks!

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Harper
Sent: 23. elokuuta 2008 5:17
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

If your program is in your private area, it won't work if you're
scheduling to a different address space. The SRB routine must normally
reside in CSA or ECSA for a SCHEDULE to a different address space.

Tom

- Original Message -
From: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
To: IBM-MAIN@BAMA.UA.EDU IBM-MAIN@BAMA.UA.EDU
Sent: Fri Aug 22 21:11:37 2008
Subject: Re: Trying to figure out IEAMSCHD

I meant, after the IEAMSCHD schedule.

The sun is coming up.  Again. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 5:10
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Tom, 

I just stuck it a bit down in my program, after the schedule.

SRBRTN BR   R14

Perhaps I made a wrong assumption.  I saw a lot of stuff about SCHEDULE
that says it has to be in fixed memory, etc.  I saw nothing like that in
IEAMSCHD.

What do I need to do to put it in the correct AMODE?  That certainly
probably explains the S0C4's in the logrec!

Lindy

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Tom Harper
Lindy,

If you're not running in a different target address space, it doesn't matter. 
But think for a moment about what running in a different address space means. 
Your private doesn't look like the target private. Be careful copying a program 
over. Do you have anything that needs re-locating? I would use directed LOAD. 

Tom 

- Original Message -
From: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
To: IBM-MAIN@BAMA.UA.EDU IBM-MAIN@BAMA.UA.EDU
Sent: Fri Aug 22 21:23:56 2008
Subject: Re: Trying to figure out IEAMSCHD

You mean I have to allocate storage in the CSA and then copy the code
that resides in my address space over?  I can do that.

I didn't think of that because here for SCHEDULE it says just what you
said:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2A881/9.6.
2

But in the section for IEAMSCHD it doesn't mention that:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2A881/9.6.
1

I guess I'm supposed to know that. (-:  I do now. Thanks!

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Harper
Sent: 23. elokuuta 2008 5:17
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

If your program is in your private area, it won't work if you're
scheduling to a different address space. The SRB routine must normally
reside in CSA or ECSA for a SCHEDULE to a different address space.

Tom

- Original Message -
From: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
To: IBM-MAIN@BAMA.UA.EDU IBM-MAIN@BAMA.UA.EDU
Sent: Fri Aug 22 21:11:37 2008
Subject: Re: Trying to figure out IEAMSCHD

I meant, after the IEAMSCHD schedule.

The sun is coming up.  Again. (-:

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lindy Mayfield
Sent: 23. elokuuta 2008 5:10
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Tom, 

I just stuck it a bit down in my program, after the schedule.

SRBRTN BR   R14

Perhaps I made a wrong assumption.  I saw a lot of stuff about SCHEDULE
that says it has to be in fixed memory, etc.  I saw nothing like that in
IEAMSCHD.

What do I need to do to put it in the correct AMODE?  That certainly
probably explains the S0C4's in the logrec!

Lindy

--
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: Dynamically add CP to running LPAR

2008-08-22 Thread Field, Alan C.
Chuck, It depends (usual answer). 

If you have defined the LPAR on the HMC in the image profile with
reserved engines of the desired type them you can do a CF CP(n),ONLINE. 

Do a D M=CPU.

The CPS with the hyphen are reserved and could be configured online.

ID  CPU
00  +
01  -
02  -
03  -
04  -
05  -
06  N
07  N
08  N

Alan

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kreiter, Chuck
Sent: Friday, August 22, 2008 21:20
To: IBM-MAIN@BAMA.UA.EDU
Subject: Dynamically add CP to running LPAR

Is it possible to add a new CP or zAAP to a running LPAR or is it
necessary to do an activate on the LPAR after the activation profile is
updated? 
 
We went from a 2096-F01 to 2096-F02 and added a zAAP.  I'd really like
to add these w/o shutting down.
 
Thanks, 
 
Chuck Kreiter
Systems Supervisor
State Auto Insurance Companies www.stateauto.com
http://www.stateauto.com/ 
PO Box 182822, Columbus, OH 43218-2822
Phone: 614.917.5529  Fax: 614.719.0171  
State Auto is one of only 14 companies to earn an A+ Rating by AM Best
every year since 1954!  
 

--
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: Dynamically add CP to running LPAR

2008-08-22 Thread Kreiter, Chuck
Thanks.  I did not define reserved engines.  I'll plan an IPL for the
weekend.   

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Field, Alan C.
Sent: Friday, August 22, 2008 10:38 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Dynamically add CP to running LPAR

Chuck, It depends (usual answer). 

If you have defined the LPAR on the HMC in the image profile with
reserved engines of the desired type them you can do a CF CP(n),ONLINE. 

Do a D M=CPU.

The CPS with the hyphen are reserved and could be configured online.

ID  CPU
00  +
01  -
02  -
03  -
04  -
05  -
06  N
07  N
08  N

Alan

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kreiter, Chuck
Sent: Friday, August 22, 2008 21:20
To: IBM-MAIN@BAMA.UA.EDU
Subject: Dynamically add CP to running LPAR

Is it possible to add a new CP or zAAP to a running LPAR or is it
necessary to do an activate on the LPAR after the activation profile is
updated? 
 
We went from a 2096-F01 to 2096-F02 and added a zAAP.  I'd really like
to add these w/o shutting down.
 
Thanks, 
 
Chuck Kreiter
Systems Supervisor
State Auto Insurance Companies www.stateauto.com
http://www.stateauto.com/ PO Box 182822, Columbus, OH 43218-2822
Phone: 614.917.5529  Fax: 614.719.0171  
State Auto is one of only 14 companies to earn an A+ Rating by AM Best
every year since 1954!  
 

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

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
One of my cats was just spinning round and round chasing his tail.  I
was thinking, that looks familiar.

Ok, I'm not sure about relocation (yet) and I don't know about a
directed LOAD.  I'm hoping I can just start with BR 14 and go from
there.

But I see what you mean about the target address space needing the code
in an area where it can run it.  I just assumed that there was some sort
of magic in IEAMSCHD that took care of all that. Doh.

Lindy

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Harper
Sent: 23. elokuuta 2008 5:39
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

If you're not running in a different target address space, it doesn't
matter. But think for a moment about what running in a different address
space means. Your private doesn't look like the target private. Be
careful copying a program over. Do you have anything that needs
re-locating? I would use directed LOAD. 

Tom 

--
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: Dynamically add CP to running LPAR

2008-08-22 Thread Field, Alan C.
Chuck,

You also need to deactivate the lpar so the image profile is reloaded
when you do the activate. 

When I set up an lpar I generally define reserved engines as shown in
the display below for our sysprog lpar so that we can config extras
online if desired.

Alan

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kreiter, Chuck
Sent: Friday, August 22, 2008 21:41
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Dynamically add CP to running LPAR

Thanks.  I did not define reserved engines.  I'll plan an IPL for the
weekend.   

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Field, Alan C.
Sent: Friday, August 22, 2008 10:38 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Dynamically add CP to running LPAR

Chuck, It depends (usual answer). 

If you have defined the LPAR on the HMC in the image profile with
reserved engines of the desired type them you can do a CF CP(n),ONLINE. 

Do a D M=CPU.

The CPS with the hyphen are reserved and could be configured online.

ID  CPU
00  +
01  -
02  -
03  -
04  -
05  -
06  N
07  N
08  N

Alan

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kreiter, Chuck
Sent: Friday, August 22, 2008 21:20
To: IBM-MAIN@BAMA.UA.EDU
Subject: Dynamically add CP to running LPAR

Is it possible to add a new CP or zAAP to a running LPAR or is it
necessary to do an activate on the LPAR after the activation profile is
updated? 
 
We went from a 2096-F01 to 2096-F02 and added a zAAP.  I'd really like
to add these w/o shutting down.
 
Thanks, 
 
Chuck Kreiter
Systems Supervisor
State Auto Insurance Companies www.stateauto.com
http://www.stateauto.com/ PO Box 182822, Columbus, OH 43218-2822
Phone: 614.917.5529  Fax: 614.719.0171  
State Auto is one of only 14 companies to earn an A+ Rating by AM Best
every year since 1954!  
 

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

--
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: Trying to figure out IEAMSCHD

2008-08-22 Thread Lindy Mayfield
I started working on this March 2nd.  And with people's kind help and
working on it all night I've managed to submit a batch job that crashes
my TSO session.  (-:

It's probably time to call it a night, er, morning.

Here is the main part of my code that does the trick.  STOKEN is primed
with the ASSDSTKN from my TSO address space.

MODESET  KEY=ZERO,MODE=SUP  

STORAGE  OBTAIN,LENGTH=2,SP=227 
LR   R5,R1  
MVC  0(2,R5),=X'07FE'   
IEAMSCHD EPADDR=(R5),  
ENV=STOKEN,TARGETSTOKEN=STOKEN

Don't know why it crashed, though.  It should have just BR 14'd.  At
least I know it's coming into my address space and fooling around with
something it shouldn't.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Harper
Sent: 23. elokuuta 2008 5:39
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Trying to figure out IEAMSCHD

Lindy,

If you're not running in a different target address space, it doesn't
matter. But think for a moment about what running in a different address
space means. Your private doesn't look like the target private. Be
careful copying a program over. Do you have anything that needs
re-locating? I would use directed LOAD. 

Tom 

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