Query on z109 BOOK concept

2006-11-07 Thread Tommy Tsui
Hi all, If I use z109 S18 that means two books and allow 18 CPs maximum. If I select 508 and fill up the book1. Can I order another 508 to fill up the book2 so that the maximum CPs are 16. Or, I only can select 709 model if CP no greater than 8? Thanks tommy

Re: Memlimit (yes, again ...) Was: Java Error

2006-11-07 Thread Tom Grieve
On Tue, 7 Nov 2006 07:49:56 +1000, Shane [EMAIL PROTECTED] wrote: On Mon, 2006-11-06 at 09:45 -0600, Tom Grieve wrote: snip... 31-bit being a subset of yes 64-bit, yes, I *absolutely* expect all software to be capable of discerning the absence (or dearth) of storage above the bar. Where it

Re: HSM DELVOL

2006-11-07 Thread Richards.Bob
I would open a PMR with IBM. Bob Richards -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Bob Henry Sent: Monday, November 06, 2006 11:10 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: HSM DELVOL These aren't the last copies if I understand

Re: Memlimit (yes, again ...) Was: Java Error

2006-11-07 Thread john gilmore
In response to strictures from Shane Ginnane [EMAIL PROTECTED], Tom Grieve [EMAIL PROTECTED] writes: OK, that's fair enough, graceful failure with meaningful error messages is absolutely desirable. and I will venture the further comment that it is not just absolutely desirable but

Re: Memlimit (yes, again ...) Was: Java Error

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of john gilmore In response to strictures from Shane Ginnane, Tom Grieve writes: OK, that's fair enough, graceful failure with meaningful error messages is absolutely desirable. and I will venture the further

Re: Assembler question

2006-11-07 Thread Steve Comstock
Alan Altmark wrote: On Tuesday, 11/07/2006 at 03:29 CET, Chris Mason [EMAIL PROTECTED] wrote: I think you're correct; it's a matter of style. Probably the programmer is abiding by some sort of house rule that says if you can't rely upon the referenced variables to provide the correct

Re: XRC / GDPS question

2006-11-07 Thread Donn Sachs
We are running XRC+GDPS to a Remote site that is 250 miles away. Using two OC48 circuits each routed differently at least that's what they tell me about the routing. We are replicating 1500 3390 volumes, about half are M27 volumes. And we are using 8 SDM's, 6 active and 2 CopyOnce. Let me know

Re: Assembler question

2006-11-07 Thread Tom Marchant
On Tue, 7 Nov 2006 00:04:23 -0500, Alan Altmark [EMAIL PROTECTED] wrote: On Tuesday, 11/07/2006 at 03:29 CET, Chris Mason [EMAIL PROTECTED] wrote: I think you're correct; it's a matter of style Best practice: MVC TARGET(6),=XL6'402021212121' Nonsense. I agree with Steve about not

Re: Any third party software recommend for disk management

2006-11-07 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Tommy Tsui Sent: Monday, November 06, 2006 9:04 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Any third party software recommend for disk management Hi all, Our shop want to find a gobal

Re: Assembler question

2006-11-07 Thread Tom Marchant
On Tue, 7 Nov 2006 09:48:58 +0200, Binyamin Dissen [EMAIL PROTECTED] wrote: It would be nice if the assembler generated a warning if the literal length is too short for the specified data. Might be nice if it generated a warning if target length was *different* than the literal. Tom Marchant

Re: Assembler question

2006-11-07 Thread Paul Gilmartin
In a recent note, Alan Altmark said: Date: Tue, 7 Nov 2006 00:04:23 -0500 Best practice: MVC TARGET(6),=XL6'402021212121' Note the length modifer. This surfaces both the exact length of the source and the exact length of the move. People who omit the length modifer are sentenced

Re: PE not Sup'd

2006-11-07 Thread Kurt Quackenbush
Does SMP/E provide any warning to the programmer who unwittingly attempts to RESTORE a HOLDERR corrective SYSMOD while leaving the PE sysmod? Sorry for leaving the thread hanging. Perhaps I thought you originally answered your own question. In any case, the answer is no, SMP/E RESTORE does

Re: Assembler question

2006-11-07 Thread Binyamin Dissen
On Tue, 7 Nov 2006 08:26:17 -0600 Tom Marchant [EMAIL PROTECTED] wrote: :On Tue, 7 Nov 2006 09:48:58 +0200, Binyamin Dissen :[EMAIL PROTECTED] wrote: :It would be nice if the assembler generated a warning if the literal :length is :too short for the specified data. :Might be nice if it

Re: Assembler question

2006-11-07 Thread Steve Comstock
Ed Finnell wrote: In a message dated 11/7/2006 8:26:38 A.M. Central Standard Time, [EMAIL PROTECTED] writes: Might be nice if it generated a warning if target length was *different* than the literal. Well you don't want to get too restrictive, then the old tricks get flagged. MVI

Re: Assembler question

2006-11-07 Thread Richard Tsujimoto
Wouldn't that be: MVS MOZ+1(L'MOZ-1),MOZ Ah, to fan the flames of a holy war... ;-)) Ed Finnell [EMAIL PROTECTED] Sent by: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU 11/07/2006 09:36 AM Please respond to IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU To

Re: Assembler question

2006-11-07 Thread Staller, Allan
snip flagged. MVI MOZ,C'Z' MVC MOZ+1(255),MOZ /snip Should't that be: MVI MOZ,C'Z' MVC MOZ+1(L'MOZ-1),MOZ -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the

Re: Assembler question

2006-11-07 Thread Ed Finnell
In a message dated 11/7/2006 8:47:46 A.M. Central Standard Time, [EMAIL PROTECTED] writes: Should't that be: MVI MOZ,C'Z' MVC MOZ+1(L'MOZ-1),MOZ Try it, it's only 30+ yr old assembler! -- For IBM-MAIN subscribe /

Re: Assembler question

2006-11-07 Thread Paul Gilmartin
In a recent note, Staller, Allan said: Date: Tue, 7 Nov 2006 08:47:19 -0600 snip flagged. MVI MOZ,C'Z' MVC MOZ+1(255),MOZ /snip Should't that be: MVI MOZ,C'Z' MVC MOZ+1(L'MOZ-1),MOZ And, by a discontinuity in assembler design, if L'MOZ=1, this clobbers one

Re: Assembler question

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Richard Tsujimoto Wouldn't that be: MVS MOZ+1(L'MOZ-1),MOZ Ah, to fan the flames of a holy war... ;-)) I've become a fan of letting the assembler do as much of the tedium as is feasible. E.g., to

Re: Assembler question

2006-11-07 Thread Richard Tsujimoto
Is *discontinuity in assembler design* a nice way of saying, it's a bad design? I would think a length of 1 and 0 are different, and MVC should perform accordingly, e.g. if length=0, do nothing. Paul Gilmartin [EMAIL PROTECTED] Sent by: IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU

Re: Assembler question

2006-11-07 Thread Tom Marchant
On Tue, 7 Nov 2006 10:14:38 -0500, Richard Tsujimoto [EMAIL PROTECTED] wrote: Is *discontinuity in assembler design* a nice way of saying, it's a bad design? I would think a length of 1 and 0 are different, and MVC should perform accordingly, e.g. if length=0, do nothing. No. The assembler

Re: Assembler question

2006-11-07 Thread Edward Jaffe
Alan Altmark wrote: Best practice: MVC TARGET(6),=XL6'402021212121' Note the length modifer. This surfaces both the exact length of the source and the exact length of the move. People who omit the length modifer are sentenced to the 9th level of hell for all eternity. Or even longer.

Re: Assembler question

2006-11-07 Thread Paul Gilmartin
In a recent note, Tom Marchant said: Date: Tue, 7 Nov 2006 09:31:40 -0600 On Tue, 7 Nov 2006 10:14:38 -0500, Richard Tsujimoto [EMAIL PROTECTED] wrote: Is *discontinuity in assembler design* a nice way of saying, it's a bad design? I would think a length of 1 and 0 are

Re: Assembler question

2006-11-07 Thread Richard Tsujimoto
Right. Given that we only have 8 bits to represent 1-256 bytes, it would be represented as X'00'-X'FF' in the instruction. I see the discontinuity in design. But, given the coding example where the target is 1 byte in length, a warning by the assembler might be nice, but IMHO, the

Re: GTF question with MODE(INT,EXT,DEFER)

2006-11-07 Thread Bruce Black
I will agree that the GTF documentation is less than clear. MODE=EXT is the most common way to run GTF. In this mode, GTF writes all trace data to the output trace dataset immediately. Once you stop the trace, you can format the trace data with IPCS. But one warning: if you are outputting to a

Re: Assembler question

2006-11-07 Thread Daniel A. McLaughlin
Don't write as much assembler as I used to, but my personal feeling always has been write it for the next PDS who will have to maintain it. I've picked up too much code of various stripes where the person thought X1, X2, etc., made good variable names. Then there was the one who indexed

Re: Assembler question

2006-11-07 Thread Paul Gilmartin
In a recent note, Edward Jaffe said: Date: Tue, 7 Nov 2006 07:45:41 -0800 I have written macros to implement assembler features for which I have been asking for a long time. In this case, it's the ability to use the implied length of the source rather than target operand. In this

Re: Assembler question

2006-11-07 Thread Edward Jaffe
Paul Gilmartin wrote: In a recent note, Edward Jaffe said: Date: Tue, 7 Nov 2006 07:45:41 -0800 I have written macros to implement assembler features for which I have been asking for a long time. In this case, it's the ability to use the implied length of the source rather than

Re: Assembler question

2006-11-07 Thread Jeffrey D. Smith
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Steve Comstock Sent: Tuesday, November 07, 2006 6:38 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Assembler question /snip/ Best practice: MVC TARGET(6),=XL6'402021212121' So why does

Re: Assembler question

2006-11-07 Thread Paul Gilmartin
(I'm cross-posting this to ASSEMBLER-LIST, where it's belonged for several plies.) In a recent note, Edward Jaffe said: Date: Tue, 7 Nov 2006 07:45:41 -0800 I have written macros to implement assembler features for which I have been asking for a long time. In this case, it's the

Re: Assembler question

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Paul Gilmartin In a recent note, Edward Jaffe said: Date: Tue, 7 Nov 2006 07:45:41 -0800 I have written macros to implement assembler features for which I have been asking for a long time. In this

Re: Assembler question

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Edward Jaffe [ snip ] .0006 D205 C00C C070 000C 0070 10 MVC TARGET(L'=XL6'012345678ABC'),=XL6'012345678ABC' Aha! I used one too many layers of parentheses! Thanks, Ed! -jc-

books for LE data sturcture

2006-11-07 Thread he_ming
Who can tell me any book with LE control block(eg C3RUNCOM, LE INTERFACE WORKAREA)? Best regards, He Ming(贺 明) Mobile: 1392-500-5956,

Re: Assembler question

2006-11-07 Thread David Andrews
On Tue, 2006-11-07 at 10:52 -0500, Daniel A. McLaughlin wrote: picked up too much code of various stripes where the person thought X1, X2, etc., made good variable names. Oh, don't be too hard on them. To this day I use loop counters I, J, K... a holdover from my ForTran days, uncountable

Re: books for LE data sturcture

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of he_ming Sent: Tuesday, November 07, 2006 10:24 AM To: IBM-MAIN@BAMA.UA.EDU Subject: books for LE data sturcture Who can tell me any book with LE control block(eg C3RUNCOM, LE INTERFACE WORKAREA)? I haven't

Re: Assembler question

2006-11-07 Thread Edward Jaffe
Edward Jaffe wrote: Yes. Also Yes. See below: A more complete example, including explicit register notation for the target operand: . LocObject Code Addr1Addr2Stmt Source Statement . 0086 1 MVTGTCSECT , .R:C

Re: Assembler question

2006-11-07 Thread Daniel A. McLaughlin
With good documentation, I can agree. But when the documentation is nonexistent, using some variable names like X1, or I, is just mean! The X1 guy never had his feet held to the flame by his boss, and guess who was the first to bail when word of the company sale came out? Next, guess who the

Combine spool output datasets

2006-11-07 Thread Miklos Szigetvari
Hi Is there any posibility to combine all the JES output datasets for the same output characteristics together ? For example JESMSGLG JESSYSMSG etc . combine together. -- Miklos Szigetvari Development Team ISIS Information Systems Gmbh tel: (+43) 2236 27551 131 Fax: (+43) 2236 21081

Re: Combine spool output datasets

2006-11-07 Thread Paul Gilmartin
On Tue, 7 Nov 2006 18:55:43 +0100, Miklos Szigetvari [EMAIL PROTECTED] wrote: Is there any posibility to combine all the JES output datasets for the same output characteristics together ? For example JESMSGLG JESSYSMSG etc . combine together. What are the same output characteristics you

Re: Combine spool output datasets

2006-11-07 Thread Ray Mullins
Not from a JES perspective - it automagically allocates those 3 data sets for every JOB/STC/TSU and in the JES data sets you will always have those 3. However, you can copy into one - SDSF PRINT to a data set, for example. I use the XDC line command (not to be confused with Dave Cole's excellent

Re: Assembler question

2006-11-07 Thread Thompson, Steve (SCI TW)
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Richard Tsujimoto Sent: Tuesday, November 07, 2006 9:15 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Assembler question Is *discontinuity in assembler design* a nice way of saying, it's a bad

IBM Support Phone Number (USA)?

2006-11-07 Thread Chase, John
Hi, Documenting our procedures for opening PMRs, etc., and have used IBMLink for so long that I've forgotten IBM's Support phone number in the US. TIA, -jc- -- For IBM-MAIN subscribe / signoff / archive access instructions,

Re: IBM Support Phone Number (USA)?

2006-11-07 Thread Daniel A. McLaughlin
Directory of worldwide contacts United States Find local contact and support information for United States. Worldwide directory by: Alphabetical order | Region General information: United States IBM North America 1133 Westchester Avenue White Plains, NY 10604 United States Tel:

Re: IBM Support Phone Number (USA)?

2006-11-07 Thread Imbriale, Donald (Exchange)
It used to be 800-237-5511. But see http://www.ibm.com/planetwide/us/ Don Imbriale -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Chase, John Sent: Tuesday, November 07, 2006 2:12 PM To: IBM-MAIN@BAMA.UA.EDU Subject: IBM Support Phone

Re: Combine spool output datasets

2006-11-07 Thread Lizette Koehler
Could you be more specific? Are you looking to place these in a data set, or print them as a unit? Or are you looking to change them with an OUTDEF parm or similar function? The JESMSGLG, JESSYSMSG, and JESJCL should all fall under the MSGCLASS parmeter. Lizette Hi Is there any

Re: IBM Support Phone Number (USA)?

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Daniel A. McLaughlin [ snip ] IBM hardware, software, and systems support 1-800-IBM-SERV (1-800-426-7378) Arigato. :-) -jc- -- For IBM-MAIN

Re: IBM Support Phone Number (USA)?

2006-11-07 Thread Daniel A. McLaughlin
Don't touch your moustache! Daniel McLaughlin Z-Series Systems Programmer Crawford Company 4680 N. Royal Atlanta Tucker GA 30084 phone: 770-621-3256 fax: 770-621-3237 email: [EMAIL PROTECTED] web: www.crawfordandcompany.com This transmission is intended exclusively for the individual or

Re: Query on z109 BOOK concept

2006-11-07 Thread Eric N. Bielefeld
I'm curious. Does anyone know if say a 6 CP model with one book costs the same as a 6 CP model with 2 books in the z processors? I know that if you really plan to expand, that it is probably cheaper to start with 2 books than one if you are going to have more than 8 CPs eventually - at least

Re: Using indirect volume serial support

2006-11-07 Thread Eric N. Bielefeld
Hi Mohamed, Using indirect volser support is a good way to go. I would suggest one other change. Start the Prod Lpar disks with P, and the Test Lpar ones with T, rather than put them in the middle of the name. That way they stand out, and all the Prod lpar disks are together in a list of

Re: Combine spool output datasets

2006-11-07 Thread Mark Zelden
On Tue, 7 Nov 2006 12:23:58 -0600, Paul Gilmartin [EMAIL PROTECTED] wrote: Are you planning to browse the spool, or print to necrodendritic media? ~~ I searched every online dictionary, ibm.com, google and the only reference I can

IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Chase, John
Ten minutes since submitting logon credentials; still no response Chicago area. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Daniel A. McLaughlin
The staff went out to vote? Daniel McLaughlin Z-Series Systems Programmer Crawford Company 4680 N. Royal Atlanta Tucker GA 30084 phone: 770-621-3256 fax: 770-621-3237 email: [EMAIL PROTECTED] web: www.crawfordandcompany.com This transmission is intended exclusively for the individual or

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Edward Jaffe
Chase, John wrote: Ten minutes since submitting logon credentials; still no response Chicago area. Based on numerous recent postings of this sort, most reasonable people would have to conclude that the new and improved IBMLink isn't. -- Edward E Jaffe Phoenix Software International,

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Daniel A. McLaughlin
Maybe it ought to run on Linux in a Z-box Daniel McLaughlin Z-Series Systems Programmer Crawford Company 4680 N. Royal Atlanta Tucker GA 30084 phone: 770-621-3256 fax: 770-621-3237 email: [EMAIL PROTECTED] web: www.crawfordandcompany.com This transmission is intended exclusively for

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Edward Jaffe
Daniel A. McLaughlin wrote: Maybe it ought to run on Linux in a Z-box Maybe it is ... -- 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/

Re: Query on z109 BOOK concept

2006-11-07 Thread R.S.
Tommy Tsui wrote: Hi all, If I use z109 S18 that means two books and allow 18 CPs maximum. If I select 508 and fill up the book1. Can I order another 508 to fill up the book2 so that the maximum CPs are 16. Or, I only can select 709 model if CP no greater than 8? In fact I don't understand

Re: Assembler question

2006-11-07 Thread Patrick O'Keefe
On Tue, 7 Nov 2006 00:04:23 -0500, Alan Altmark [EMAIL PROTECTED] wrote: ... Best practice: MVC TARGET(6),=XL6'402021212121' Note the length modifer. This surfaces both the exact length of the source and the exact length of the move. People who omit the length modifer are sentenced to the 9th

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Tom Marchant
On Tue, 7 Nov 2006 14:58:09 -0500, Daniel A. McLaughlin [EMAIL PROTECTED] wrote: Maybe it ought to run on Linux in a Z-box Maybe it ought to run on MVS and be written in COBOL using DB2. -- Tom Marchant -- For IBM-MAIN

Re: Assembler question

2006-11-07 Thread Tom Marchant
On Tue, 7 Nov 2006 14:12:56 -0600, Patrick O'Keefe [EMAIL PROTECTED] wrote: Hey Alan, how about posting this over on the Assemblwer list. Your Best practices flag (even if true) (which is doubtful) was bound to guarantee this will become a never ending thread. It might as well never end on a

Re: Using indirect volume serial support

2006-11-07 Thread Tom Marchant
On Mon, 6 Nov 2006 21:31:46 -0800, Mohamed Juma [EMAIL PROTECTED] wrote: Hi, I am going to migrate from Z/OS V1.4 to V1.7, we have two independent systems TEST and PROD, each system has its own datasets and volumes, but we keep the same VOLSER names for both right now as example we use for CAT

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Tom Marchant On Tue, 7 Nov 2006 14:58:09 -0500, Daniel A. McLaughlin [EMAIL PROTECTED] wrote: Maybe it ought to run on Linux in a Z-box Maybe it ought to run on MVS and be written in COBOL using DB2. Long

Re: Query on z109 BOOK concept

2006-11-07 Thread R.S.
Eric N. Bielefeld wrote: I'm curious. Does anyone know if say a 6 CP model with one book costs the same as a 6 CP model with 2 books in the z processors? I know that if you really plan to expand, that it is probably cheaper to start with 2 books than one if you are going to have more

Fw: PL/I for MVS version 1.1 and z/OS 1.7

2006-11-07 Thread Bill Klein
Ron, Just a point of clarification. that release of PL/I has NOT been announced as EOS next year. What I think you may have seen were announcements: 906-027 and 905-261 It is true that the FULL FUNCTION (including the Debugger) product for VM is being withdrawn, but that

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Ed Finnell
In a message dated 11/7/2006 2:31:04 P.M. Central Standard Time, [EMAIL PROTECTED] writes: Long as it runs at all. Lately it's been less reliable that our favorite desktop OS. Wonder if it's hardware or software? Inquiring minds seem stuck

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Tom Schmidt
On Tue, 7 Nov 2006 14:30:36 -0600, Chase, John wrote: From: IBM Mainframe Discussion List On Behalf Of Tom Marchant On Tue, 7 Nov 2006 14:58:09 -0500, Daniel A. McLaughlin wrote: Maybe it ought to run on Linux in a Z-box Maybe it ought to run on MVS and be written in COBOL using DB2.

Calling C routine from COBOL

2006-11-07 Thread Bill Klein
cnps [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Hi, snip I have no access to edit the link JCL to specify the entry point. Is there an alternate method to do this? Also can you please suggest some good book to learn about COBOL dynamically calling C routine? Thanks in Advance.

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Ed Finnell In a message dated 11/7/2006 2:31:04 P.M. Central Standard Time, [EMAIL PROTECTED] writes: Long as it runs at all. Lately it's been less reliable that our favorite desktop OS. Wonder if it's

Re: Calling C routine from COBOL

2006-11-07 Thread Steve Comstock
Bill Klein wrote: cnps [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Hi, snip I have no access to edit the link JCL to specify the entry point. Is there an alternate method to do this? Also can you please suggest some good book to learn about COBOL dynamically calling C routine?

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Ed Finnell
In a message dated 11/7/2006 2:45:34 P.M. Central Standard Time, [EMAIL PROTECTED] writes: Inquiries about it are appearing on CICS-L now, as well. Apparently the problem is not local to Chicagoland Wonder if these blokes have any SLA's in their contracts??? Serious productivity

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Jousma, David
Call and open a problem against IBMLINK via the phone. Dave Dave Jousma Principal Systems Programmer [EMAIL PROTECTED] 616.653.8429 -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of

IBMLink (Internet) Returned from Lunch

2006-11-07 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Jousma, David Call and open a problem against IBMLINK via the phone. Amazing! As soon as IBM answered the phone, I got in. -jc- -- For

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Chase, John
Maybe they were rehearsing for this (from IBMLink News, dated 3 November): Planned IBMLink 2000 outage on November 10-12 -jc- -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL

Re: SMP/E in TSO (was: Why AUTHPGM?)

2006-11-07 Thread Paul Gilmartin
In a recent note, Gilbert Saint-Flour said: Date: Mon, 6 Nov 2006 12:33:13 -0500 When a task terminates, the Task Close routine (IFGxTCx IIRC) runs the DEB chain and tries to close corresponding DCBs and ACBs. If a DCB/ACB is inaccessible or appears corrupted, then TC issues

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Ed Finnell
In a message dated 11/7/2006 3:02:06 P.M. Central Standard Time, [EMAIL PROTECTED] writes: Call and open a problem against IBMLINK via the phone. Oh, the 'big-I' is on the fritz try again later -- For IBM-MAIN

Re: IBMLink (Internet) Out to Lunch again?

2006-11-07 Thread Ed Finnell
In a message dated 11/7/2006 3:19:04 P.M. Central Standard Time, [EMAIL PROTECTED] writes: Planned IBMLink 2000 outage on November 10-12 Oh, think I feel a Dilbert coming.. _http://www.dilbert.com/comics/dilbert/archive/dilbert-20061031.html_

STEPLIB CLIST or REXX Command

2006-11-07 Thread Dean Montevago
Hi, Where is this command located what release of z/OS did it become available. TIA Dean Dean Montevago Sr. Systems Specialist Visiting Nurse Service of New York (212) 609 - 5596 [EMAIL PROTECTED] -- For IBM-MAIN subscribe /

Re: STEPLIB CLIST or REXX Command

2006-11-07 Thread Dean Montevago
Forget it. I found that it's on the CBT tape. -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Dean Montevago Sent: Tuesday, November 07, 2006 5:02 PM To: IBM-MAIN@BAMA.UA.EDU Subject: STEPLIB CLIST or REXX Command Hi, Where is this command

Re: Assembler question

2006-11-07 Thread Alan Altmark
On Tuesday, 11/07/2006 at 02:12 CST, Patrick O'Keefe [EMAIL PROTECTED] wrote: Hey Alan, how about posting this over on the Assemblwer list. Your Best practices flag (even if true) (which is doubtful) was bound to guarantee this will become a never ending thread. It might as well never

z/OS software test plan

2006-11-07 Thread Marcos Morelatto
Hi all, I need to build a z/OS software test plan from scratch in few days. Can anyone provide a sample? Thanks in advance for your help, Morelatto -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Re: Combine spool output datasets

2006-11-07 Thread Miklos Szigetvari
Hi Transfering output via Email by a SAPI interface, it would be nice if all the same would come together -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Behalf Of Lizette Koehler Sent: Dienstag, 07. November 2006 20:20 To: IBM-MAIN@BAMA.UA.EDU Subject:

Re: Combine spool output datasets

2006-11-07 Thread Chris Mason
Mark Languages grow in order to accommodate new requirements of people using them. If enough people find that they prefer to disparage reliance on dead trees in order to pass on information - or whatever other use there may be for paper - by use of a thoroughly respectable combination of two

Re: telnet, rlogin, ssh, IP's and ports (was: Java Error)

2006-11-07 Thread Chris Mason
I'm sorry this is not properly tied to previous posts. Lindy, Matt, Mark and Ramiro Something that may be relevant to this topic for two reasons. It is certainly relevant for one reason. In looking up the manuals for another problem, I discovered that there were two flavours of the remote

z/OS under VM

2006-11-07 Thread Bo Goersch
We have a z/OS 1.4 system that we are in the process of shutting down but this will not take place for another 5 months. In the meanwhile we are obligated to include this machine in our DR site as a guest under z/VM. The system is running native in the production environment. What are the

Re: SMP/E in TSO (was: Why AUTHPGM?)

2006-11-07 Thread Paul Gilmartin
In a recent note, Gilbert Saint-Flour said: Date: Mon, 6 Nov 2006 12:33:13 -0500 When a task terminates, the Task Close routine (IFGxTCx IIRC) runs the DEB chain and tries to close corresponding DCBs and ACBs. If a DCB/ACB is inaccessible or appears corrupted, then TC issues

CA Solve : Access V4R0 FTS V3R0 and Unicenter NetMaster 7.0 under z/OS 1.7

2006-11-07 Thread Srivastava, Prabhat Kumar
Hi Listers, Due to time constraint we are planning to run CA Solve: Access V4R0 FTS V3R0, Unicenter NetMaster V7R0 under z/OS 1.7. These CA products are running under CA common services V3R0. Is anyone doing this? Regards, Prabhat.

JES2 Checkpoint level z/OS 1.2

2006-11-07 Thread munif sadek
Please help me in upgarding our production JES2PLEX Checkpoint level from OS/390 R 4 to z/OS 1.2 level. we are at z/OS 1.4 and $HASP895 $DACTIVATE $HASP895 JES2 CHECKPOINT LEVEL IS NOW OS/390 RELEASE 4 $HASP895 A TOTAL OF 1826 4K RECORDS ARE REQUIRED FOR $ACTIVATE. $*HASP895 CKPT2 IS TOO