Re: Help make XEDIT and ISPF EDIT keystroke compatible (WAS: XEDIT Macro and Command Line Input)

2011-08-08 Thread Les Koehler
Speaking of fingers being trained: I've always used an IBM 
101 keyboard ever since IBM started using pc's and my 
fingers *still* can't get used to where the arrow keys are 
on it! I think they remember a 3279-3x.


My first laptop, in 2009, gave me conniption fits until I 
modified a 101 keyboard to add footpads (for air 
circulation) and a PS/2 to USB adapter for it so it can 
bridge the laptop keyboard. A small fan to the right of my 
recliner adds some extra circulation and a usb driven 
portable fan goes with me when I'm traveling. So I have the 
same keyboard for both the laptop and desktop. With THE as 
my editor, in Xedit mode, it's just about like being back on VM!


Les

Bob wrote:

Phil,
Thanks.  You are right.  I was trying too hard. Checking queued() was exactly
what I needed.

And yes, I am trying to get my VM and MVS environments to behave somewhat
alike.  Like you said fingers get trained. And, after 30+ years my fingers are
very well trained! The problem is that over the years I have spent time in both
camps so I have issues either way I go. My co-workers laugh because
my MVS world has always understood QQ  FILE. (And I always have
'autosave' turned off.)

Right now I'm starting to do more in the VM world and I find that by using
PF7/PF8 all I succeed in doing losing my place in my document.

Going the other way, I keep wanting to use X in ISPF 3.4 ... and my dataset
just disappears!

So, SCROLL is destined to be assigned to all the pf keys I expect to scroll
the screen and make it behave more like ISPF.

And I would be happy to collaborate on making this happen.

(And I know you suggested that I contact you off-list, but I'm betting we are
not the only ones that would like these capabilities.  And, we are probably
're-inventing the wheel' in many cases.  Perhaps, we will get some others
offering tools that they have already created.)

Bob


On Sat, Aug 6, 2011 at 7:23 AM, Phil Smith III li...@akphs.com wrote:

Bob,

You're actually trying too hard: your macro should just look at QUEUED() and
see if there's something stacked.

This is a crude example, because you probably want to do more than just a
LOCATE * for a M (like EXTRACT /SCREEN and divide by 2, then make it
   'COMMAND * -'n
or some such), but:

/**/
if queued()  0 then pull op
else op = ''
if abbrev('MAX', op, 1) then 'COMMAND LOCATE *'
else 'COMMAND FORWARD' op

BTW, are you trying to do an SPF-ish environment in XEDIT? If so, please
contact me off-list -- I'd be interested in helping. Not that I think SPF is
better*, but I understand that the fingers get trained (now that I'm doing
z/OS, I find myself doing FIND instead of / in XEDIT and KEDIT sometimes!),
and it's been something that folks have talked about for a long time.

...phsiii

* Insert religious editor war here

-Original Message-
Bob mvs...@gmail.com
Subject: XEDIT Macro and Command Line Input

I'm struggling trying to write an XEDIT macro and hoping someone can help=
 me=20
over a tiny stumbling block.

I want a pfkey set to a macro.  ie. SET PF6 BEFORE MACRO SCROLL

And I want to be able to accept an *optional* command line parameter.

If there is always a command line parameter I seem to be able to use
READ CMDLINE to get it.  However, this does not seem to work=20
when there is no command line parameter at all.  I just get hung
at the READ CMDLINE until I hit enter. Also, when there is a
parameter I not only what to read it, but I want to consume it so that
it is no longer on the command line after my macro.

Is there a way to do this?






Re: help with DMSCGR DMSCSR esoterica

2011-02-19 Thread Kris Buelens
Uppercase or not: I guess that these CSL routines also work with EXEC2, and
there One is another variable than ONE.

Substitution or not:  One often sees execs containing code like this:
 info.street='xxx'
 info.name=''
and the coder of the exec didn't define 'street', nor 'name' as variables.
So INFO.STREET and INFO.NAME are the variables here.  When accessing them
from CSL (or PIPE), one needs direct access, no substitution.
In PIPE speak this is VAR INFO.STREET DIRECT
This technique makes it possible to code for example
 ToEat='STREET NAME'
 do while toEat''
  parse var toEat t toEat
  say left(t,10) '=' info.t
 end

But, this is not always what exec programmers want.  So the reason for
substitution or not.

Notes:

   - I consider the above (coding info.name='xxx' and supposing 'name' is a
   constant) as bad practice.  One can get the same simple code by using
   info.0name='xxx' as 0name can never be a variable.
   - With CMS Pipelines, VAR xxx.yyy DIRECT has better performance then
   SYMBOLIC. One must know what one wants to achieve.  Given that t='NAME'
   - 'PIPE VAR INFO.T SYMBOLIC ...'
  - 'PIPE VAR INFO.'t 'DIRECT ...'

both produce exactly the same result, but the second example is considerably
faster.


2011/2/19 Steve Marak sama...@gizmoworks.com

 I have one of those is there ever any situation when ... would not be a
 good default questions, and I need the help of VM-savvy minds capable of
 perverse and twisted logic. I can't imagine a better place to find them
 than this list. (Yes, that was intended as a compliment.)

 As you all know, DMSCGR and DMSCSR are CSL routines which retrieve and
 set, respectively, the values of REXX variables. The default behavior is
 that the variable name passed is searched for directly in REXX's list of
 variables, exactly as passed. Optionally, the caller can ask that the name
 be both translated to upper case and that REXX perform variable name
 substitution on it before looking for it.

 (Since REXX doesn't care about case in variable names and some quick
 experiments confirm that passing mixed- or lower-case names without this
 option isn't productive [except of non-zero return codes], one could
 reasonably ask why the name is not always translated to upper-case. I
 think it's a very valid question, but more or less irrelevant to my
 problem.)

 In situations where everyone involved knows which behavior is desired, the
 choice between substitution or not isn't an issue. But if there's a
 situation where an end user will create REXX execs which pass a variable
 name to a program which will then retrieve or set it via these routines,
 it's more problematic ... or maybe not, if one or the other behavior is
 obviously preferable.

 Can anyone think of a situation in which you would *not* want substitution
 performed on the variable name passed? Typically, the whole reason you use
 compound REXX variables is to get that. But the writers of these routines
 didn't make that the default, so I want to know if there's some obvious
 situation we're missing where you wouldn't want it. (We've come up with
 one exotic case involving REXXVARS, but it's not one that seems likely to
 occur. In fact, it seems like the writer of the exec would almost have to
 be out to get you to code it that way.)

 Thanks,

 Steve

 -- Steve Marak
 -- sama...@gizmoworks.com




-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: help with DMSCGR DMSCSR esoterica

2011-02-18 Thread Les Koehler

Oops! The last statement should be:

say city.who

Sorry! blush

Les

Les Koehler wrote:
Rexx vars are always upper-cased *except* for 'content addressable 
arrays' (stemmed variables). For example:


name='Les Koehler'
city.name='Tampa'
say 'Enter the name of the person and I''ll give you the city'
parse pull who
say city.name

The concept is simple yet very powerful. I used it once to improve the 
elapsed time of matching a vendors individual transaction accounting 
records against his end of month accounting records from hours to a 
couple of minutes. The individual records and the monthly records did 
*not* have the same layout, but with this technique it was a snap to 
match them.


Les

Steve Marak wrote:
I have one of those is there ever any situation when ... would not be 
a good default questions, and I need the help of VM-savvy minds 
capable of perverse and twisted logic. I can't imagine a better place 
to find them than this list. (Yes, that was intended as a compliment.)


As you all know, DMSCGR and DMSCSR are CSL routines which retrieve and 
set, respectively, the values of REXX variables. The default behavior 
is that the variable name passed is searched for directly in REXX's 
list of variables, exactly as passed. Optionally, the caller can ask 
that the name be both translated to upper case and that REXX perform 
variable name substitution on it before looking for it.


(Since REXX doesn't care about case in variable names and some quick 
experiments confirm that passing mixed- or lower-case names without 
this option isn't productive [except of non-zero return codes], one 
could reasonably ask why the name is not always translated to 
upper-case. I think it's a very valid question, but more or less 
irrelevant to my problem.)


In situations where everyone involved knows which behavior is desired, 
the choice between substitution or not isn't an issue. But if there's 
a situation where an end user will create REXX execs which pass a 
variable name to a program which will then retrieve or set it via 
these routines, it's more problematic ... or maybe not, if one or the 
other behavior is obviously preferable.


Can anyone think of a situation in which you would *not* want 
substitution performed on the variable name passed? Typically, the 
whole reason you use compound REXX variables is to get that. But the 
writers of these routines didn't make that the default, so I want to 
know if there's some obvious situation we're missing where you 
wouldn't want it. (We've come up with one exotic case involving 
REXXVARS, but it's not one that seems likely to occur. In fact, it 
seems like the writer of the exec would almost have to be out to get 
you to code it that way.)


Thanks,

Steve

-- Steve Marak
-- sama...@gizmoworks.com





Re: Help - Help

2010-06-08 Thread Bob Bates
First thing I would do it check the disks that are accessed from that id. Logon 
and do AC ( NODISK at the prompt, or if you don't get the prompt IPL CMS then 
do the AC ( NODISK. Try HELP and see if you still get the problem. Then I would 
start accessing things you normally have and keep trying the HELP command until 
it shows up again.

In short take it one step at a  time until it breaks.


Bob Bates
Enterprise Hosting Services

w. (469)892-6660
c. (214) 907-5071

This message may contain confidential and/or privileged information.  If you 
are not the addressee or authorized to receive this for the addressee, you must 
not use, copy, disclose, or take any action based on this message or any 
information herein.  If you have received this message in error, please advise 
the sender immediately by reply e-mail and delete this message.  Thank you for 
your cooperation.




From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf 
Of Mark Pace
Sent: Tuesday, June 08, 2010 8:35 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Help - Help

I've done something to my CMS id and now all my help looks odd.  I don't know 
what I've changed, and so don't know how to fix it.

HELP CP
 COMMANDS CP   All Help Information
(c) Copyright IBM Corporation 1990, 2009

 CP

 --CP--.-.-
 '-command-'

 çüç[

á ñîä¡äìäEäì

 ãÍáÕ

 CMS¢¾¢nàªàuàuàòäàz/VMãDãqäPä¨äBä[äw¢¾¢nàpä«äuä]äóàãåêåààþà®ànàgà¸CP
ä«äuä]äóàãç¶á¶àýàuàþä 

I assumed my Language was messed up, but
q language
AMENG
Ready; T=0.01/0.01 09:32:28

This is the only CMS id that has this problem.  The others I've logged onto 
show Help correctly.
Do'es anyone have a clue how to fix this?

z/VM 6.1 - 1002

--
Mark Pace
Mainline Information Systems
1700 Summit Lake Drive
Tallahassee, FL. 32317


Re: Help - Help

2010-06-08 Thread Mark Pace
Thanks, Bob.  I found that I was accessing Maint's 401 disk.  Removing the
access fixed the problem.
My comment in the profile exec for this disk does not match what it is
really for.

On Tue, Jun 8, 2010 at 9:48 AM, Bob Bates robert.ba...@wellsfargo.comwrote:

  First thing I would do it check the disks that are accessed from that id.
 Logon and do AC ( NODISK at the prompt, or if you don't get the prompt IPL
 CMS then do the AC ( NODISK. Try HELP and see if you still get the problem.
 Then I would start accessing things you normally have and keep trying the
 HELP command until it shows up again.

 In short take it one step at a  time until it breaks.


 Bob Bates
 Enterprise Hosting Services

 w. (469)892-6660
 c. (214) 907-5071

 *“This message may contain confidential and/or privileged information.  If
 you are not the addressee or authorized to receive this for the addressee,
 you must not use, copy, disclose, or take any action based on this message
 or any information herein.  If you have received this message in error,
 please advise the sender immediately by reply e-mail and delete this
 message.  Thank you for your cooperation.*



  --
 *From:* The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] *On
 Behalf Of *Mark Pace
 *Sent:* Tuesday, June 08, 2010 8:35 AM
 *To:* IBMVM@LISTSERV.UARK.EDU
 *Subject:* Help - Help

 I've done something to my CMS id and now all my help looks odd.  I don't
 know what I've changed, and so don't know how to fix it.

 HELP CP
   COMMANDS CP   All Help
 Information
 (c) Copyright IBM Corporation 1990, 2009



  CP




  
 --CP--.-.-
  '-command-'



  çüç[



 á ñîä¡äìäEäì



  ãÍáÕ



  CMS¢¾¢nàªàuàuàòäàz/VMãDãqäPä¨äBä[äw¢¾¢nàpä«äuä]äóàãåêåààþà®ànàgà¸CP

 ä«äuä]äóàãç¶á¶àýàuàþä 


 I assumed my Language was messed up, but
  q language
 AMENG
 Ready; T=0.01/0.01 09:32:28

 This is the only CMS id that has this problem.  The others I've logged onto
 show Help correctly.
 Do'es anyone have a clue how to fix this?

 z/VM 6.1 - 1002

 --
 Mark Pace
 Mainline Information Systems
 1700 Summit Lake Drive
 Tallahassee, FL. 32317




-- 
Mark Pace
Mainline Information Systems
1700 Summit Lake Drive
Tallahassee, FL. 32317


Re: Help with HCPVSS429E (spool error).

2010-04-06 Thread Kris Buelens
CP DRAIN DASD is the command to stop using this spool pack
SPOOLCHN is a package on tye download lib to find which spool files have at
least one block on a pack.
CP START DASD is the command to restart spooling on a pack

2010/4/6 Frank M. Ramaekers framaek...@ailife.com

  I believe I know what the problem is, but I don’t know how to fix it.



 1)   Added new CP_OWNED pack last week

 2)   ICKDSF LABELed the pack instead of FORMATing the pack

 3)   SPOOL system started using area allocated



 I need to:

 1) Quiese (can’t remember the command) the volume

 2) Determine what was placed in this area

 3) Remove spool references to files contained within

 4) Format the SPOOL area

 5) Bring area back up for SPOOL usage



  Frank M. Ramaekers Jr.



 Systems Programmer

 MCP, MCP+I, MCSE  RHCE

 American Income Life Insurance Co.

 Phone: (254)761-6649

 1200 Wooded Acres Dr.

 Fax: (254)741-5777

 Waco, Texas  76701




  _ This message
 contains information which is privileged and confidential and is solely for
 the use of the intended recipient. If you are not the intended recipient, be
 aware that any review, disclosure, copying, distribution, or use of the
 contents of this message is strictly prohibited. If you have received this
 in error, please destroy it immediately and notify us at
 privacy...@ailife.com.




-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: Help with HCPVSS429E (spool error).

2010-04-06 Thread Frank M. Ramaekers
I'm not seeing how to obtain the spool files with at least one block on
the pack (from SPOOLCHN).

 

 

Frank M. Ramaekers Jr.

 

 



From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On
Behalf Of Kris Buelens
Sent: Tuesday, April 06, 2010 9:05 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Help with HCPVSS429E (spool error).

 

CP DRAIN DASD is the command to stop using this spool pack
SPOOLCHN is a package on tye download lib to find which spool files have
at least one block on a pack.
CP START DASD is the command to restart spooling on a pack

2010/4/6 Frank M. Ramaekers framaek...@ailife.com

I believe I know what the problem is, but I don't know how to fix it.

 

1)   Added new CP_OWNED pack last week

2)   ICKDSF LABELed the pack instead of FORMATing the
pack

3)   SPOOL system started using area allocated

 

I need to:

1) Quiese (can't remember the command) the volume

2) Determine what was placed in this area

3) Remove spool references to files contained within

4) Format the SPOOL area

5) Bring area back up for SPOOL usage

 

 Frank M. Ramaekers Jr.

 

Systems Programmer

MCP, MCP+I, MCSE  RHCE

American Income Life Insurance Co.

Phone: (254)761-6649

1200 Wooded Acres Dr.

Fax: (254)741-5777

Waco, Texas  76701

 

 

_ This message
contains information which is privileged and confidential and is solely
for the use of the intended recipient. If you are not the intended
recipient, be aware that any review, disclosure, copying, distribution,
or use of the contents of this message is strictly prohibited. If you
have received this in error, please destroy it immediately and notify us
at privacy...@ailife.com. 




-- 
Kris Buelens,
IBM Belgium, VM customer support


_
This message contains information which is privileged and confidential and is 
solely for the use of the
intended recipient. If you are not the intended recipient, be aware that any 
review, disclosure,
copying, distribution, or use of the contents of this message is strictly 
prohibited. If you have
received this in error, please destroy it immediately and notify us at 
privacy...@ailife.com.


Re: Help with HCPVSS429E (spool error).

2010-04-06 Thread Schuh, Richard
 1.
Drain the pack via command
 2.
List it as a draining device in SYSTEM CONFIG.
 3.
Grab SPOOLCHN from the IBM Download site. It is dependent on another package 
that is also there.
 4.
Run it to determine what files have blocks located on the pack.
 5.
SPXTAPE DUMP the indicated files with the PURGE option.
 6.
SPXTAPE LOAD the files from the previous step.


If all files on the disk are ordinary spool files, the pack will be drained 
after the dump. If there are DCSS or NSS files, it will not be drained until 
after folks are convinced to re-ipl or log off.  Once it is drained, feel free 
to molest it any way you desire.


Regards,
Richard Schuh






From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf 
Of Frank M. Ramaekers
Sent: Tuesday, April 06, 2010 7:00 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Help with HCPVSS429E (spool error).

I believe I know what the problem is, but I don't know how to fix it.

1)   Added new CP_OWNED pack last week
2)   ICKDSF LABELed the pack instead of FORMATing the pack
3)   SPOOL system started using area allocated

I need to:
1) Quiese (can't remember the command) the volume
2) Determine what was placed in this area
3) Remove spool references to files contained within
4) Format the SPOOL area
5) Bring area back up for SPOOL usage


 Frank M. Ramaekers Jr.





Systems Programmer


MCP, MCP+I, MCSE  RHCE


American Income Life Insurance Co.


Phone: (254)761-6649


1200 Wooded Acres Dr.


Fax: (254)741-5777


Waco, Texas  76701





_ This message contains 
information which is privileged and confidential and is solely for the use of 
the intended recipient. If you are not the intended recipient, be aware that 
any review, disclosure, copying, distribution, or use of the contents of this 
message is strictly prohibited. If you have received this in error, please 
destroy it immediately and notify us at privacy...@ailife.com.


Re: Help with HCPVSS429E (spool error).

2010-04-06 Thread John Franciscovich
I'm not seeing how to obtain the spool files with at least one block on
the pack (from SPOOLCHN).

What you really need is the SPFPACK package from the download library.
SPFPACK uses SPOOLCHN and RXDASD, so you'll have to download those as
well.

The description page includes an explanation of how to remove the files
from the volume and restore them to other spool volumes.

http://www.vm.ibm.com/download/packages/descript.cgi?SPFPACK

John Franciscovich
z/VM Development


Re: Help with HCPVSS429E (spool error).

2010-04-06 Thread Frank M. Ramaekers
Yep, those were the missing piecesTHANKS!

 
Frank M. Ramaekers Jr.
 
 
-Original Message-
From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On
Behalf Of John Franciscovich
Sent: Tuesday, April 06, 2010 10:37 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Help with HCPVSS429E (spool error).

I'm not seeing how to obtain the spool files with at least one block on
the pack (from SPOOLCHN).

What you really need is the SPFPACK package from the download library.
SPFPACK uses SPOOLCHN and RXDASD, so you'll have to download those as
well.

The description page includes an explanation of how to remove the files
from the volume and restore them to other spool volumes.

http://www.vm.ibm.com/download/packages/descript.cgi?SPFPACK

John Franciscovich
z/VM Development

_
This message contains information which is privileged and confidential and is 
solely for the use of the
intended recipient. If you are not the intended recipient, be aware that any 
review, disclosure,
copying, distribution, or use of the contents of this message is strictly 
prohibited. If you have
received this in error, please destroy it immediately and notify us at 
privacy...@ailife.com.


Re: HELP

2009-11-10 Thread Edward M Martin
Hello To Everyone that sent any response.

 

Yep, I really needed help.  I had sent Help to LISTPROC@
listserv.uark.edu.

And got the response that there is no listproc.

 

It is amazing what happens when you put in the correct words and names.

 

Anyway Chicago was fun and I did not make on to the evening news.

 

 

Ed Martin

Aultman Health Foundation

330-363-5050

ext 35050



Re: HELP

2009-11-10 Thread Schuh, Richard
Are we supposed to sympathize with you for your failure (not making it on to 
the news, that is)?  :-)


Regards,
Richard Schuh






From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf 
Of Edward M Martin
Sent: Tuesday, November 10, 2009 5:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: HELP

Hello To Everyone that sent any response.

Yep, I really needed help.  I had sent Help to LISTPROC@ listserv.uark.edu.
And got the response that there is no listproc.

It is amazing what happens when you put in the correct words and names.

Anyway Chicago was fun and I did not make on to the evening news.


Ed Martin
Aultman Health Foundation
330-363-5050
ext 35050


Re: HELP

2009-11-10 Thread Edward M Martin
Nope.  I am pretty proud that I did not make it.

 

Ed Martin

Aultman Health Foundation

330-363-5050

ext 35050

From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On
Behalf Of Schuh, Richard
Sent: Tuesday, November 10, 2009 11:31 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: HELP

 

Are we supposed to sympathize with you for your failure (not making it
on to the news, that is)?  :-)

 

Regards, 
Richard Schuh 

 

 

 



From: The IBM z/VM Operating System
[mailto:ib...@listserv.uark.edu] On Behalf Of Edward M Martin
Sent: Tuesday, November 10, 2009 5:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: HELP

Hello To Everyone that sent any response.

 

Yep, I really needed help.  I had sent Help to LISTPROC@
listserv.uark.edu.

And got the response that there is no listproc.

 

It is amazing what happens when you put in the correct words and
names.

 

Anyway Chicago was fun and I did not make on to the evening
news.

 

 

Ed Martin

Aultman Health Foundation

330-363-5050

ext 35050



Re: HELP

2009-11-05 Thread John McKown
I don't think IBMVM needs any help!

On Thu, 2009-11-05 at 17:21 -0500, Edward M Martin wrote:
 Help IBMVM
 
 Ed Martin
 
 Aultman Health Foundation
 
 330-363-5050
 
 ext 35050
 

-- 
John McKown
Maranatha!


Re: HELP

2009-11-05 Thread Schuh, Richard
IBMVM doesn't need help, it is the subscribers who do.

Regards, 
Richard Schuh 

 

 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:ib...@listserv.uark.edu] On Behalf Of John McKown
 Sent: Thursday, November 05, 2009 4:05 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: HELP
 
 I don't think IBMVM needs any help!
 
 On Thu, 2009-11-05 at 17:21 -0500, Edward M Martin wrote:
  Help IBMVM
  
  Ed Martin
  
  Aultman Health Foundation
  
  330-363-5050
  
  ext 35050
  
 
 --
 John McKown
 Maranatha!
 

Re: Help mounting tape on IBM ATL

2009-04-03 Thread Peter . Webb
I had to do this last week. This is what I did.

1) Inserted the tape in the tape library I/O station. The tape had no
barcode, so the robot detected it, but could not identify it, so the
robot left it in the I/O station.

2) Went to the tape library web interface as an administrator:
 a) Clicked Cartridges
 b) Clicked I/O Station
 c) Selected the unknown volume
 d) In the action box, chose 'Fix Unknown Volume Serial'
 e) Clicked Go and assigned a serial number outside our site numbers. I
used  the last 6 digits of the IBM number on the cartridge.
 f) The library stored the tape.

3) Used VM:Tape to mount the tape as a Foreign volume - VMTAPE MOUNT
773434 500 (FOR LEV2VM FOREIGN LABEL NL

4) When finished I used VMTAPE EJECT 773434 to get it out of the library

Peter   


-Original Message-
From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On
Behalf Of Philip Tully
Sent: Monday, March 23, 2009 10:08 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Help mounting tape on IBM ATL

Hello,

I'm trying to have a 3590 z/VM install tape mounted inside an IBM ATL.
T=
he
customer I am working with is not sure how to tell the library to mount
t=
he
tape.

Does anyone have suggestions?

Phil 

-


The information transmitted is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material.  Any 
review retransmission dissemination or other use of or taking any action in 
reliance upon this information by persons or entities other than the intended 
recipient or delegate is strictly prohibited.  If you received this in error 
please contact the sender and delete the material from any computer.  The 
integrity and security of this message cannot be guaranteed on the Internet.  
The sender accepts no liability for the content of this e-mail or for the 
consequences of any actions taken on the basis of information provided.  The 
recipient should check this e-mail and any attachments for the presence of 
viruses.  The sender accepts no liability for any damage caused by any virus 
transmitted by this e-mail.  This disclaimer is property of the TTC and must 
not be altered or circumvented in any manner.


Re: Help mounting tape on IBM ATL

2009-03-23 Thread Imler, Steven J
Assuming the tape has the scanable bar coding on the external label,
have the customer insert the tape into the convenience station (the
slots where you insert tapes into the ATL).  Then issue the DFSMS
command to move the tape from INSERT status to VOLSPECIFIC ...

  --- DFSMSRM SET VOLCAT volser TARGETCAT VOLSPECIFIC

Then you should be able to issue the DFSMS mount command to get the ATL
to mount the tape ...


JR (Steven) Imler
CA
Senior Sustaining Engineer
Tel: +1 703 708 3479
steven.im...@ca.com



 -Original Message-
 From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu]
On
 Behalf Of Philip Tully
 Sent: Monday, March 23, 2009 10:08 AM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Help mounting tape on IBM ATL
 
 Hello,
 
 I'm trying to have a 3590 z/VM install tape mounted inside an IBM ATL.
T=
 he
 customer I am working with is not sure how to tell the library to
mount t=
 he
 tape.
 
 Does anyone have suggestions?
 
 Phil


Re: Help mounting tape on IBM ATL

2009-03-23 Thread LOREN CHARNLEY
Phil,

Here are the commands that I used when we had a 'Tape Robot' and DFSMS.


DFSMSRM MOUNT VOL XX (RDEV 0600 VDEV 0600 ATTACH VSEPROD READWR

DFSMSRM DEMOUNT RDEV 0600

DETACH 0600 FROM VSEPROD

WHERE XXX WILL BE THE VOLUME YOU WANT TO INITIALIZE
SUBSTITUTE 0600 FOR 0601 WHEN APPLICABLE

DFSMSRM Q LIB INV SCRATCH0

DFSMSRM SET VOLCAT VOL 700200 TARGET EJECT

DFSMSRM SET VOLCAT VOL XX TARGET SCRATCH0 (SOURCE SCRATCH0

I hope this helps.

Cheers,
Loren Charnley, Jr.
IT Systems Engineer
FAMILY DOLLAR
(704) 847-6961 Ext. 3327
(704) 814-3327
lorencharn...@familydollar.com


-Original Message-
From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On
Behalf Of Philip Tully
Sent: Monday, March 23, 2009 10:08 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Help mounting tape on IBM ATL

Hello,

I'm trying to have a 3590 z/VM install tape mounted inside an IBM ATL.
T=
he
customer I am working with is not sure how to tell the library to mount
t=
he
tape.

Does anyone have suggestions?

Phil 

-
 NOTE:
This e-mail message contains PRIVILEGED and CONFIDENTIAL
information and is intended only for the use of the specific
individual or individuals to which it is addressed. If you are not
an intended recipient of this e-mail, you are hereby notified that
any unauthorized use, dissemination or copying of this e-mail or
the information contained herein or attached hereto is strictly
prohibited. If you receive this e-mail in error, notify the person
named above by reply e-mail and please delete it. Thank you.


Re: help with an error code

2008-11-13 Thread Rich Smrcina

Macioce, Larry wrote:

 This morning when I came in I was informed we couldn't get to our Linux
servers. The problem was on the HMC, VM was in a 912 disabled wait
state.
I have looked all over,but obviously not everywhere or I would have
found it,  and can't find where this code is hiding. 
Asking for a little help in finding it,

Thanks
Mace


Mace,

If you take a look at 'CP Messages and Codes' it says:

For a description of what the disabled wait state code means and suggested actions to 
take, look up the CP message that has the same number as the wait state code.


HCP912 says:

HCP912W System recovery failure; volid volid not mounted

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009


Re: help with an error code

2008-11-13 Thread Kris Buelens
Use HELP, the waitcode plus a W, hence:
HELP HCP912W
which tells you:

HCP912W   System recovery failure; volid volid not mounted

Explanation:  A volume necessary for checkpointing the system is not mounted.
The volid refers to the volume ID of the volume that is not mounted.

When CP issues this message, the volid should be the volume ID specified on
either the SYSCKP or SYSWRM parameters of the SYSRES macro in HCPSYS, or the
CHECKPOINT or WARMSTART operands of the SYSTEM_RESIDENCE statement in the
SYSTEM CONFIG file.
 etc...


Additionally: have a look in the reader of OPERATNS, maybe CP produced a dump


2008/11/13 Macioce, Larry [EMAIL PROTECTED]

  This morning when I came in I was informed we couldn't get to our Linux
 servers. The problem was on the HMC, VM was in a 912 disabled wait
 state.
 I have looked all over,but obviously not everywhere or I would have
 found it,  and can't find where this code is hiding.
 Asking for a little help in finding it,
 Thanks
 Mace

 -
 
 The information transmitted is intended solely for the individual
 or entity to which it is addressed and may contain confidential
 and/or
 privileged material. Any review, retransmission, dissemination or
 other use of or taking action in reliance upon this information by
 persons or entities other than the intended recipient is
 prohibited. If you have received this email in error please contact
 the sender and delete the
 material from any computer.
 




--
Kris Buelens,
IBM Belgium, VM customer support


Re: help with an error code

2008-11-13 Thread Macioce, Larry
Thanks I am use to looking in MVS system codes to find a wait state.

Mace

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Rich Smrcina
Sent: Thursday, November 13, 2008 8:03 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: help with an error code

Macioce, Larry wrote:
  This morning when I came in I was informed we couldn't get to our
Linux
 servers. The problem was on the HMC, VM was in a 912 disabled wait
 state.
 I have looked all over,but obviously not everywhere or I would have
 found it,  and can't find where this code is hiding. 
 Asking for a little help in finding it,
 Thanks
 Mace

Mace,

If you take a look at 'CP Messages and Codes' it says:

For a description of what the disabled wait state code means and
suggested actions to 
take, look up the CP message that has the same number as the wait state
code.

HCP912 says:

HCP912W System recovery failure; volid volid not mounted

-- 
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2009 - Orlando, FL - May 15-19, 2009

-

The information transmitted is intended solely for the individual
or entity to which it is addressed and may contain confidential
and/or
privileged material. Any review, retransmission, dissemination or
other use of or taking action in reliance upon this information by
persons or entities other than the intended recipient is
prohibited. If you have received this email in error please contact
the sender and delete the
material from any computer.




Re: help with an error code

2008-11-13 Thread Alan Altmark
On Thursday, 11/13/2008 at 07:56 EST, Macioce, Larry 
[EMAIL PROTECTED] wrote:
 This morning when I came in I was informed we couldn't get to our Linux
 servers. The problem was on the HMC, VM was in a 912 disabled wait
 state.
 I have looked all over,but obviously not everywhere or I would have
 found it,  and can't find where this code is hiding.
 Asking for a little help in finding it,

While others have answered your question about finding VM wait state codes 
(HELP HCPW), take Kris' advice and look further: Unless someone 
re-IPLed VM manually, your system abended and the system couldn't restart 
automatically.  If it did abend, you need to solve that problem, too.

Of course, don't let that stop you from fixing whatever is causing the 
912.

Alan Altmark
z/VM Development
IBM Endicott


Re: HELP ME VMSES

2008-05-06 Thread Bill Munson
I might add a quick addition to Mike's good suggestion

Service works if you use SERVICE and PUT2PROD
if you do service the old fashioned way it does not.

service cp status 
VMFSRV2760I SERVICE processing started 
VMFSRV1225I CP (5VMCPR20%CP) is at service level RSU-0701
VMFSRV2760I SERVICE processing completed successfully 
Ready; T=0.19/0.20 08:52:37
 
vmfsim query vm sysrecs tdata :ppf zvm cp :stat 
VMFSIP2480I Results for 
TDATA :PPF ZVM CP :STAT 
:PPF ZVM CP 
   :STAT RECEIVED.04/15/08.13:16:12.MAINT.RSU-0702 
Ready; T=0.01/0.01 08:52:47
 
 vmfsim query vm sysrecs tdata :ppf servp2p cp :stat 
VMFSIP2480I Results for 
TDATA :PPF SERVP2P CP :STAT 
:PPF SERVP2P CP 
   :STAT RECEIVED.06/07/07.15:39:21.MAINT.RSU-0701 
Ready; T=0.01/0.01 08:53:01 

also the VMFSIM commands tell you when the RSU or PTF was applied

 
Bill Munson
VM System Programmer
201-418-7588

President MVMUA
http://www2.marist.edu/~mvmua/





Edward M. Martin [EMAIL PROTECTED] 
Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
05/02/2008 02:49 PM
Please respond to
The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU


To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: HELP ME VMSES






How is it that every time I need something, the list knows before I ask
the question.

I did a VMFSETUP ZVM CP

Then do a  FILEL UM* * * 

But the SERVICE ALL STATUS is much nicer.

Ed Martin
330-588-4723
ext 40441

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Walter
Sent: Friday, May 02, 2008 2:20 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: HELP ME VMSES

Every so often someone asks the IBMVM list how to find out if a specific

PTF has been applied to a z/VM system.  More often, I ask myself the
same 
question.  There are of course, arcane commands to supply this
information 
- those documented in the dusty leather-bound VMSES/E Introduction and 
Reference manual but mostly known only to the Wizards of VMSES/E, and 
their closest friends.  The rest of us mere mortals just lurch around 
until we eventually stumble across the proper mystical incantation.

Over time, I've written down some of the suggestions from those generous

souls posting to this list, and even some of the things that I've
stumbled 
across.  Rather than just repeatedly lose the scribbled notes, I entered
a 
few down into a VMSES HELPME file that is now kept on MAINT's 191 disk

(and migrated to new releases).

The file looks like (copied/pasted from XEDIT):

 VMSESHELPME   A1  F 80  Trunc=80 Size=17 Line=0 Col=1 Alt=0 
 
* * * Top of File * * * 
Useful commands to find z/VM service/maintenance information: 
 
SERVICE ALL STATUS 
 
SERVICE ALL STATUS ptfnumber  (e.g. UM#) 
 
SERVICE ALL STATUS aparnumber (e.g. VM#) 
 
VMFINFO ZVM componentname (SETUP 
- place a non-blank character to: PTFs/APARs 
- press ENTER 
- displayed next (in part): 
 PTF number .. (PF1 to select from list of PTFs)

 APAR number . (PF1 to select from list of
APARs) 

- place the cursor on the PRT or APAR line and press PF1.
Woohoo! 

 
* * * End of File * * * 

It's not *too* hard for me to remember the command HELP ME VMSES 
(doesn't that have a nice plaintive ring to it?).  I've used the same 
filename HELPME in a few other seldom-used subject areas, where just a

quick example is needed.  It's been quite helpful, and it's easy to find

them all with FILELIST * HELPME *.  So I wanted to SHARE the idea
with 
others on the list. 

Mike (As one ages, one learns to cope in new ways) Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



The information contained in this e-mail and any accompanying documents
may contain information that is confidential or otherwise protected from
disclosure. If you are not the intended recipient of this message, or if
this message has been addressed to you in error, please immediately
alert the sender by reply e-mail and then delete this message, including
any attachments. Any dissemination, distribution or other use of the
contents of this message by anyone other than the intended recipient is
strictly prohibited. All messages sent to and from this e-mail address
may be monitored as permitted by applicable law and regulations to
ensure compliance with our internal policies and to protect our
business. E-mails are not secure and cannot be guaranteed to be error
free as they can be intercepted, amended, lost or destroyed, or contain
viruses. You are deemed to have accepted these risks if you communicate
with us by e-mail. 


*** IMPORTANT
NOTE* The opinions expressed in this
message and/or any attachments are those of the author and not
necessarily those of Brown Brothers Harriman  Co., its
subsidiaries and affiliates (BBH). There is no guarantee

Re: HELP ME VMSES

2008-05-06 Thread Mike Walter
Thanks for sharing, Bill! 

VMFSIM with all it's VMSES/E intricacies is exactly the sort of command to 
which I was referring in There are of course, arcane commands to supply 
this information

I've updated my copy of VMSES HELPME with your examples.  Real-life 
examples are a (to steal from Roger Deschner's style) a **GOOD THING**.

Mike Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



Bill Munson [EMAIL PROTECTED] 

Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
05/06/2008 07:59 AM
Please respond to
The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU



To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: HELP ME VMSES






I might add a quick addition to Mike's good suggestion

Service works if you use SERVICE and PUT2PROD
if you do service the old fashioned way it does not.

service cp status 
VMFSRV2760I SERVICE processing started 
VMFSRV1225I CP (5VMCPR20%CP) is at service level RSU-0701
VMFSRV2760I SERVICE processing completed successfully 
Ready; T=0.19/0.20 08:52:37
 
vmfsim query vm sysrecs tdata :ppf zvm cp :stat 
VMFSIP2480I Results for 
TDATA :PPF ZVM CP :STAT 
:PPF ZVM CP 
   :STAT RECEIVED.04/15/08.13:16:12.MAINT.RSU-0702 
Ready; T=0.01/0.01 08:52:47
 
 vmfsim query vm sysrecs tdata :ppf servp2p cp :stat 
VMFSIP2480I Results for 
TDATA :PPF SERVP2P CP :STAT 
:PPF SERVP2P CP 
   :STAT RECEIVED.06/07/07.15:39:21.MAINT.RSU-0701 
Ready; T=0.01/0.01 08:53:01 

also the VMFSIM commands tell you when the RSU or PTF was applied

 
Bill Munson
VM System Programmer
201-418-7588

President MVMUA
http://www2.marist.edu/~mvmua/





Edward M. Martin [EMAIL PROTECTED] 
Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
05/02/2008 02:49 PM
Please respond to
The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU


To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: HELP ME VMSES






How is it that every time I need something, the list knows before I ask
the question.

I did a VMFSETUP ZVM CP

Then do a  FILEL UM* * * 

But the SERVICE ALL STATUS is much nicer.

Ed Martin
330-588-4723
ext 40441

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Walter
Sent: Friday, May 02, 2008 2:20 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: HELP ME VMSES

Every so often someone asks the IBMVM list how to find out if a specific

PTF has been applied to a z/VM system.  More often, I ask myself the
same 
question.  There are of course, arcane commands to supply this
information 
- those documented in the dusty leather-bound VMSES/E Introduction and 
Reference manual but mostly known only to the Wizards of VMSES/E, and 
their closest friends.  The rest of us mere mortals just lurch around 
until we eventually stumble across the proper mystical incantation.

Over time, I've written down some of the suggestions from those generous

souls posting to this list, and even some of the things that I've
stumbled 
across.  Rather than just repeatedly lose the scribbled notes, I entered
a 
few down into a VMSES HELPME file that is now kept on MAINT's 191 disk

(and migrated to new releases).

The file looks like (copied/pasted from XEDIT):

 VMSESHELPME   A1  F 80  Trunc=80 Size=17 Line=0 Col=1 Alt=0 
 
* * * Top of File * * * 
Useful commands to find z/VM service/maintenance information: 
 
SERVICE ALL STATUS 
 
SERVICE ALL STATUS ptfnumber  (e.g. UM#) 
 
SERVICE ALL STATUS aparnumber (e.g. VM#) 
 
VMFINFO ZVM componentname (SETUP 
- place a non-blank character to: PTFs/APARs 
- press ENTER 
- displayed next (in part): 
 PTF number .. (PF1 to select from list of PTFs)

 APAR number . (PF1 to select from list of
APARs) 

- place the cursor on the PRT or APAR line and press PF1.
Woohoo! 

 
* * * End of File * * * 

It's not *too* hard for me to remember the command HELP ME VMSES 
(doesn't that have a nice plaintive ring to it?).  I've used the same 
filename HELPME in a few other seldom-used subject areas, where just a

quick example is needed.  It's been quite helpful, and it's easy to find

them all with FILELIST * HELPME *.  So I wanted to SHARE the idea
with 
others on the list. 

Mike (As one ages, one learns to cope in new ways) Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



The information contained in this e-mail and any accompanying documents
may contain information that is confidential or otherwise protected from
disclosure. If you are not the intended recipient of this message, or if
this message has been addressed to you in error, please immediately
alert the sender by reply e-mail and then delete this message, including
any attachments. Any dissemination, distribution or other use of the
contents of this message by anyone

Re: HELP ME VMSES

2008-05-06 Thread Bill Munson
Mike,

I prefer to refer to myself as old fashioned not arcane   ;-)

munson


*** IMPORTANT
NOTE* The opinions expressed in this
message and/or any attachments are those of the author and not
necessarily those of Brown Brothers Harriman  Co., its
subsidiaries and affiliates (BBH). There is no guarantee that
this message is either private or confidential, and it may have
been altered by unauthorized sources without your or our knowledge.
Nothing in the message is capable or intended to create any legally
binding obligations on either party and it is not intended to
provide legal advice. BBH accepts no responsibility for loss or
damage from its use, including damage from virus.



Re: HELP ME VMSES

2008-05-06 Thread Schuh, Richard
You would rather be old than mysterious? You can be both, you know.

Regards, 
Richard Schuh 

 

 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Bill Munson
 Sent: Tuesday, May 06, 2008 7:22 AM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: HELP ME VMSES
 
 Mike,
 
 I prefer to refer to myself as old fashioned not arcane   ;-)
 
 munson
 
 
 *** IMPORTANT
 NOTE* The opinions expressed in 
 this message and/or any attachments are those of the author 
 and not necessarily those of Brown Brothers Harriman  Co., 
 its subsidiaries and affiliates (BBH). There is no 
 guarantee that this message is either private or 
 confidential, and it may have been altered by unauthorized 
 sources without your or our knowledge.
 Nothing in the message is capable or intended to create any 
 legally binding obligations on either party and it is not 
 intended to provide legal advice. BBH accepts no 
 responsibility for loss or damage from its use, including 
 damage from virus.
 **
 **
 


Re: HELP ME VMSES

2008-05-06 Thread Bill Munson
cool

Bill Munson
VM System Programmer
201-418-7588





Schuh, Richard [EMAIL PROTECTED] 
Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
05/06/2008 12:53 PM
Please respond to
The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU


To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: HELP ME VMSES






You would rather be old than mysterious? You can be both, you know.

Regards, 
Richard Schuh 

 

 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Bill Munson
 Sent: Tuesday, May 06, 2008 7:22 AM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: HELP ME VMSES
 
 Mike,
 
 I prefer to refer to myself as old fashioned not arcane   ;-)
 
 munson
 
 


*** IMPORTANT
NOTE* The opinions expressed in this
message and/or any attachments are those of the author and not
necessarily those of Brown Brothers Harriman  Co., its
subsidiaries and affiliates (BBH). There is no guarantee that
this message is either private or confidential, and it may have
been altered by unauthorized sources without your or our knowledge.
Nothing in the message is capable or intended to create any legally
binding obligations on either party and it is not intended to
provide legal advice. BBH accepts no responsibility for loss or
damage from its use, including damage from virus.



Re: HELP ME VMSES

2008-05-02 Thread Edward M. Martin
How is it that every time I need something, the list knows before I ask
the question.

I did a VMFSETUP ZVM CP

Then do a  FILEL UM* * * 

But the SERVICE ALL STATUS is much nicer.

Ed Martin
330-588-4723
ext 40441

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Walter
Sent: Friday, May 02, 2008 2:20 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: HELP ME VMSES

Every so often someone asks the IBMVM list how to find out if a specific

PTF has been applied to a z/VM system.  More often, I ask myself the
same 
question.  There are of course, arcane commands to supply this
information 
- those documented in the dusty leather-bound VMSES/E Introduction and 
Reference manual but mostly known only to the Wizards of VMSES/E, and 
their closest friends.  The rest of us mere mortals just lurch around 
until we eventually stumble across the proper mystical incantation.

Over time, I've written down some of the suggestions from those generous

souls posting to this list, and even some of the things that I've
stumbled 
across.  Rather than just repeatedly lose the scribbled notes, I entered
a 
few down into a VMSES HELPME file that is now kept on MAINT's 191 disk

(and migrated to new releases).

The file looks like (copied/pasted from XEDIT):

 VMSESHELPME   A1  F 80  Trunc=80 Size=17 Line=0 Col=1 Alt=0  
  
* * * Top of File * * *  
Useful commands to find z/VM service/maintenance information:  
  
SERVICE ALL STATUS  
  
SERVICE ALL STATUS ptfnumber  (e.g. UM#)  
  
SERVICE ALL STATUS aparnumber (e.g. VM#)  
  
VMFINFO ZVM componentname (SETUP  
- place a non-blank character to: PTFs/APARs  
- press ENTER  
- displayed next (in part):  
 PTF number .. (PF1 to select from list of PTFs)

 APAR number . (PF1 to select from list of
APARs)  

- place the cursor on the PRT or APAR line and press PF1.
Woohoo!  

  
* * * End of File * * *   

It's not *too* hard for me to remember the command HELP ME VMSES 
(doesn't that have a nice plaintive ring to it?).  I've used the same 
filename HELPME in a few other seldom-used subject areas, where just a

quick example is needed.  It's been quite helpful, and it's easy to find

them all with FILELIST * HELPME *.  So I wanted to SHARE the idea
with 
others on the list. 

Mike (As one ages, one learns to cope in new ways) Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



The information contained in this e-mail and any accompanying documents
may contain information that is confidential or otherwise protected from
disclosure. If you are not the intended recipient of this message, or if
this message has been addressed to you in error, please immediately
alert the sender by reply e-mail and then delete this message, including
any attachments. Any dissemination, distribution or other use of the
contents of this message by anyone other than the intended recipient is
strictly prohibited. All messages sent to and from this e-mail address
may be monitored as permitted by applicable law and regulations to
ensure compliance with our internal policies and to protect our
business. E-mails are not secure and cannot be guaranteed to be error
free as they can be intercepted, amended, lost or destroyed, or contain
viruses. You are deemed to have accepted these risks if you communicate
with us by e-mail. 


Re: HELP ME VMSES

2008-05-02 Thread LOREN CHARNLEY
Mike,

This type of sharing is what this list is all about. Thanks for the tip,
it is a good one.

Loren Charnley, Jr.
IT Systems Engineer
FAMILY DOLLAR
(704) 847-6961 Ext. 3327
(704) 814-3327
[EMAIL PROTECTED]


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Walter
Sent: Friday, May 02, 2008 2:20 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: HELP ME VMSES

Every so often someone asks the IBMVM list how to find out if a specific

PTF has been applied to a z/VM system.  More often, I ask myself the
same 
question.  There are of course, arcane commands to supply this
information 
- those documented in the dusty leather-bound VMSES/E Introduction and 
Reference manual but mostly known only to the Wizards of VMSES/E, and 
their closest friends.  The rest of us mere mortals just lurch around 
until we eventually stumble across the proper mystical incantation.

Over time, I've written down some of the suggestions from those generous

souls posting to this list, and even some of the things that I've
stumbled 
across.  Rather than just repeatedly lose the scribbled notes, I entered
a 
few down into a VMSES HELPME file that is now kept on MAINT's 191 disk

(and migrated to new releases).

The file looks like (copied/pasted from XEDIT):

 VMSESHELPME   A1  F 80  Trunc=80 Size=17 Line=0 Col=1 Alt=0  
  
* * * Top of File * * *  
Useful commands to find z/VM service/maintenance information:  
  
SERVICE ALL STATUS  
  
SERVICE ALL STATUS ptfnumber  (e.g. UM#)  
  
SERVICE ALL STATUS aparnumber (e.g. VM#)  
  
VMFINFO ZVM componentname (SETUP  
- place a non-blank character to: PTFs/APARs  
- press ENTER  
- displayed next (in part):  
 PTF number .. (PF1 to select from list of PTFs)

 APAR number . (PF1 to select from list of
APARs)  

- place the cursor on the PRT or APAR line and press PF1.
Woohoo!  

  
* * * End of File * * *   

It's not *too* hard for me to remember the command HELP ME VMSES 
(doesn't that have a nice plaintive ring to it?).  I've used the same 
filename HELPME in a few other seldom-used subject areas, where just a

quick example is needed.  It's been quite helpful, and it's easy to find

them all with FILELIST * HELPME *.  So I wanted to SHARE the idea
with 
others on the list. 

Mike (As one ages, one learns to cope in new ways) Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



The information contained in this e-mail and any accompanying documents
may contain information that is confidential or otherwise protected from
disclosure. If you are not the intended recipient of this message, or if
this message has been addressed to you in error, please immediately
alert the sender by reply e-mail and then delete this message, including
any attachments. Any dissemination, distribution or other use of the
contents of this message by anyone other than the intended recipient is
strictly prohibited. All messages sent to and from this e-mail address
may be monitored as permitted by applicable law and regulations to
ensure compliance with our internal policies and to protect our
business. E-mails are not secure and cannot be guaranteed to be error
free as they can be intercepted, amended, lost or destroyed, or contain
viruses. You are deemed to have accepted these risks if you communicate
with us by e-mail. 

-
 NOTE:
This e-mail message contains PRIVILEGED and CONFIDENTIAL
information and is intended only for the use of the specific
individual or individuals to which it is addressed. If you are not
an intended recipient of this e-mail, you are hereby notified that
any unauthorized use, dissemination or copying of this e-mail or
the information contained herein or attached hereto is strictly
prohibited. If you receive this e-mail in error, notify the person
named above by reply e-mail and please delete it. Thank you.


Re: Help Wanted

2008-02-11 Thread Peter Carrier
Thanks very much for all the replies.  I really didn't expect it, althoug
h 
I should know better with this group.

I have passed on names and addresses to the folks in charge, and I want t
o 
thank everyone who responded.  I think a leading candidate has been 
identified, and if no one else hears back, please accept my own thanks in
 
their stead.

Peter


Re: Help Wanted

2008-02-07 Thread Schuh, Richard
You might try posting here http://www.velocity-software.com/jobs/

Regards, 
Richard Schuh 

 

 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Peter Carrier
 Sent: Thursday, February 07, 2008 3:26 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Help Wanted
 
 We're looking for two folks who can help with some PL/1 
 programming and =
 
 some pipelines programming.  At this time I don't know the 
 scope of the =
 
 projects.  Please contact me off list if you are interested.
 
 If this is inappropriate here would someone please point me 
 to the best =
 
 place to post this?
 
 Thanks in advance,
 
 Peter
 


Re: HELP on z/vm 5.3 install!

2007-07-25 Thread Anne Crabtree
Well, it just so happenend, not sure how, that my VM session went from
running to vm read and then the ftp server timed out.  I don't know
if I hit enter or what?  Anyway, I just logged off.  Will check the ftp
server software for transmission speed or whatever...  it was freeware I
downloaded...  may hav to try a different one.  No big deal I guess.  I
can always start over.. :)

Anne D. Crabtree
System Programmer
WV Dept of Administration - OT
304-558-5914 ext 8885
Fax 304-558-1351
 [EMAIL PROTECTED] 07/24/07 4:55 PM 
On Tuesday, 07/24/2007 at 04:07 EDT, Ray Mansell [EMAIL PROTECTED]
wrote:
 Hmmm... I can't help, though I suspect a simple HX would do the trick.
 However, you might want to do some investigation, since I also did an
 FTP install last week, and it took less than an hour.
 
 Or, just leave it running overnight. Is there any reason you can't do 
that?

I think you were right to suggest something is wrong.  No way it should 
take that long.  Oversimplifying, at 10 disks every 3 hours it would
take 
84 hours to download 280 disks.

Alan Altmark
z/VM Development
IBM Endicott


Re: HELP on z/vm 5.3 install!

2007-07-25 Thread Ray Mansell
For an FTP server (and I assume you are talking about a Windows PC - I 
know, big assumption), you can't go wrong with FileZilla.


Ray

Anne Crabtree wrote:

Well, it just so happenend, not sure how, that my VM session went from
running to vm read and then the ftp server timed out.  I don't know
if I hit enter or what?  Anyway, I just logged off.  Will check the ftp
server software for transmission speed or whatever...  it was freeware I
downloaded...  may hav to try a different one.  No big deal I guess.  I
can always start over.. :)
  


Re: HELP on z/vm 5.3 install!

2007-07-24 Thread Ray Mansell
Hmmm... I can't help, though I suspect a simple HX would do the trick. 
However, you might want to do some investigation, since I also did an 
FTP install last week, and it took less than an hour.


Or, just leave it running overnight. Is there any reason you can't do that?

Ray Mansell

Anne Crabtree wrote:

I am installing z/vm 5.3 from an ftp server...  Was really proud of
myself until I realized after starting the instdvd and 1 1/2 hours have
gone by and I am on disk 5 of 280 that it might not have been prudent to
start it this late in the day! 


Is there a graceful way to interrupt the install so that I'm not here
all night?  I see instructions about restarting instdvd with restart
option which I'm perfectly willing to do... in the morning..
  


Re: HELP on z/vm 5.3 install!

2007-07-24 Thread Alan Altmark
On Tuesday, 07/24/2007 at 04:07 EDT, Ray Mansell [EMAIL PROTECTED] wrote:
 Hmmm... I can't help, though I suspect a simple HX would do the trick.
 However, you might want to do some investigation, since I also did an
 FTP install last week, and it took less than an hour.
 
 Or, just leave it running overnight. Is there any reason you can't do 
that?

I think you were right to suggest something is wrong.  No way it should 
take that long.  Oversimplifying, at 10 disks every 3 hours it would take 
84 hours to download 280 disks.

Alan Altmark
z/VM Development
IBM Endicott


Re: help

2007-03-08 Thread Jack Woehr

Sheesh, you guys, he thought it was the way you get the automated
list reponse. Tell him how to unsubscribe from the list!

William Munson wrote:

Marty,

What do you need HELP with?

Bill Munson
IT Specialist
Office of Information Technology
State of New Jersey
(609) 984-4065

President MVMUA
http://www.marist.edu/~mvmua



Benedict, Martin wrote:

Help







--
Jack J. Woehr# If your neighbor prays too loud
http://www.well.com/~jax #  in church, go home and lock your
http://www.softwoehr.com #  smokehouse. - Harry S Truman


Re: help

2007-03-07 Thread Peter . Webb
Could we have a little more information, please?

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Benedict, Martin
Sent: March 7, 2007 09:56
To: IBMVM@LISTSERV.UARK.EDU
Subject: help

Help


The information transmitted is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material.  Any 
review retransmission dissemination or other use of or taking of any action in 
reliance upon this information by persons or entities other than the intended 
recipient or delegate is strictly prohibited.  If you received this in error 
please contact the sender and delete the material from any computer.  The 
integrity and security of this message cannot by guaranteed on the Internet.  
The Sender accepts no liability for the content of this e-mail or for the 
consequences of any actions taken on basis of the information provided.  The 
recipient should check this e-mail and any attachments for the presence of 
viruses.  The sender accepts no liability for any damage caused by any virus 
transmitted by this e-mail.  This disclaimer is the property of the TTC and 
must not be altered or circumvented in any manner.


Re: Help with verifying a PTF

2006-06-10 Thread Steve Gentry

Well, then Houston, I think we've got a problem because when I download UM31742, use SERVICE and PUT2PROD,
it doesn't update correctly. When I review the various MSG and LOG files, it appears that it installs correctly. 
So . . . either the code is wrong or SERVICE and/or PUT2PROD has a problem.  
I think I'll try doing it the old fashioned way described in the 5.2 Service Guide to see what happens.
Thanks for the reply Leland.

Steve G.







Leland Lucius [EMAIL PROTECTED]
Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
06/09/2006 03:45 PM
Please respond to The IBM z/VM Operating System


To:IBMVM@LISTSERV.UARK.EDU
cc:
Subject:Re: Help with verifying a PTF


Yepper, you are correct:


 APAR Identifier .. VM63921   Last Changed  06/04/28
 IOCP NEW FUNCTION
 
 
 Symptom .. NF NFStatus ... CLOSED UR1
 Severity ... 4   Date Closed . 06/04/27
 Component .. 568411201   Duplicate of 
 Reported Release . 520   Fixed Release  999
 Component Name VM CMSSpecial Notice
 Current Target Date ..06/04/19   Flags
 SCP ...
 Platform 
 
 Status Detail: SHIPMENT - Packaged solution is available for
  shipment.
 
 PE PTF List:
 
 PTF List:
 Release 440  : UM31740 available 06/04/28 (1000 )
 Release 510  : UM31741 available 06/04/28 (1000 )
 Release 520  : UM31742 available 06/04/28 (1000 )
 
 


On 6/9/06 4:36 PM, Steve Gentry [EMAIL PROTECTED] wrote:

UM31740




Re: help to get removed from list

2006-04-11 Thread Duane Weaver



Send email to [EMAIL PROTECTED]
with the text

UNSUBSCRIBE IBMVM

At 10:08 AM 4/11/2006, you wrote:
How do I remove
myself from this list?

Bill Fairchild