R: Determine IMS Environ From MVS Cntl Blks

2005-12-13 Thread MASSIMO BIANCUCCI
Sorry for my inadequate knowledge, but which IMS environment other than 
MPP,BMP,DLIbatch you're referring to ?

-Messaggio originale-
Da: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Per conto di Bill 
Kotchish
Inviato: lunedì 12 dicembre 2005 17.14
A: IBM-MAIN@BAMA.UA.EDU
Oggetto: Re: Determine IMS Environ From MVS Cntl Blks

Thanks, Massimo, but I suspect that DFS would show up under online 
(MPP), batch (DLI) or that crazy combo Batch-Message (BMP). . .

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Behalf Of MASSIMO 
BIANCUCCI
Sent: Monday, December 12, 2005 10:57 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: R: Determine IMS Environ From MVS Cntl Blks


This could be a method (not the only and not the best !):

LA 7,X'10'
L  7,0(7)
L  7,0(7)
L  7,4(7)Pointer to current TCB
L  7,X'B4'(7) Pointer to JSCB and then TCBJSCBB LA 6,X'168'(7) Here you'll fine 
the main program - JSCBPGMN

Within JSCBPGMN you can trigger your application because if it's like 'DFS%'
you should be IMS, like 'DFH%' CICS, like 'IKJ%' TSO and so on for every known 
prefix environment. I'm not stating anything, it's a way !

Contact me offline if you need further infos.

Good luck.

-Messaggio originale-
Da: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Per conto di Bill 
Kotchish
Inviato: lunedì 12 dicembre 2005 16.19
A: IBM-MAIN@BAMA.UA.EDU
Oggetto: Determine IMS Environ From MVS Cntl Blks

I need a way to determine if I, as an executing program, am running in an 
online or batch environment.  By online, I mean either IMS online or CICS.

I found a program entitled COB2JOB on the web that gives examples of 
various MVS Control Block addresses and useful data.  In one section of this 
program, there is reference to the TCB and at the 53rd address, the
TCBEXT2 (Common Extension) and at offset 21, the address of the AFCB.  The 
program says if there is a valid (non-zero) address in there, then we must be 
under CICS control;  otherwise, batch.

I tested this in an IMS online environment and this address is zero, so I 
cannot use this to determine anything IMS.

Do you know of an area in the MVS Control Blocks that will definitively 
indicate being under IMS online control, similar to this CICS solution?

I'm obviously not a sys prog, so make it simple for this semi-retired 
53-year-old.  Thanks 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

--
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: 3270 Session Manager survey - results (sorta, kinda)

2005-12-13 Thread Andy Robertson
On Tue, 13 Dec 2005 16:03:33 +1100, Bruce Jefferies
[EMAIL PROTECTED] wrote:

I'd hoped for a bigger response and I'm not sure it is valid to draw any
conclusions from
the sample I did get, anyway for what it's worth...

VendorProduct Votes
Mackinney VTAMSwitch  2
Macro4Vtubes  2




Bruce, sorry I missed this, you can add one more user of Macro4 VTUBES 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


Bang!

2005-12-13 Thread Phil Payne
http://www.channelregister.co.uk/2005/12/12/oil_blast_northgate/

It will be interesting to see how many companies really do have effective 
continuity plans.


Pictures here:

http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/05/in_pictures_depot_fire_continues/html/1.stm

-- 
  Phil Payne
  http://www.isham-research.co.uk
  +44 7833 654 800

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


Converting TOD to Local Time

2005-12-13 Thread Cwi Jeret
Hello,

We are using an Assembler program to analyse SMF output records
of CICS transactions.
The timestamps in the CICS SMF records are in TOD format.
In order to get a readable timestamp we are using the STKCONV macro,
but this gives us the GMT time rather than our local time.

Does anybody have an example of an ASSEMBLER routine to convert
the TOD time figures to our local time ?
Or any other solution for us ?

Thanks, Cwi Jeret  - Bank Hapoalim T.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


Re: Converting TOD to Local Time

2005-12-13 Thread john gilmore
If you add the signed difference between UTC/GMT values and your local time 
values in Israel to the STCK[E] values BEFORE using STCKCONV you will get 
the results you seek  There is a table of appropriate time-unit multiples in 
STCK[E] units in ther current Principles of Operation.


Beware of the complications of daylight time, summer time or whatever if you 
use it.


John Gilmore
Ashland, MA 01721-1817
USA

_
On the road to retirement? Check out MSN Life Events for advice on how to 
get there! http://lifeevents.msn.com/category.aspx?cid=Retirement


--
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: Converting TOD to Local Time

2005-12-13 Thread Robert Wright
IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 12/13/2005
07:07:18 AM:

 We are using an Assembler program to analyse SMF output records
 of CICS transactions.
 The timestamps in the CICS SMF records are in TOD format.
 In order to get a readable timestamp we are using the STKCONV macro,
 but this gives us the GMT time rather than our local time.

 Does anybody have an example of an ASSEMBLER routine to convert
 the TOD time figures to our local time ?

I don't have an assembler routine to contribute, but I can warn you that
there are three, not two, interpretations of a TOD time stamp available.

1.  The STCK instruction produces an absolute time stamp.

2.  Adjusting that using CVT field CVTLSO from the generating CICS system
yields a UTC (nearly synonymous with obsolete term GMT) time stamp.

3.  Adjusting that using CVT field CVTLDTO from the generating CICS system
yields a local time stamp.  You may, however, use CVTLDTO from the system
doing your formatting if your goal is to get a report adjusted to YOUR
system's local time.

Be certain which interpretation applies to your starting value.  The
adjustment values are doublewords and either require that your assembler
routine use zSeries doubleword arithmetic or use fullword arithmetic plus
overflow logic to carry/borrow from one word to the other.

Bob Wright

--
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: Its a question of ethics

2005-12-13 Thread Charles Mills
I have not read every response to this question so forgive me if I am
duplicating what someone else has said.

It seems to me that the fact that you felt the need to ask the question
reveals the correct answer.

That little voice that said why don't you ask this on the listserve?
That's your conscience.

Don't do it.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Howard Rifkind
Sent: Monday, December 12, 2005 8:30 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Its a question of ethics


  I have this question.
   
  Lets say I have worked for an organization for a few years and then decide
to leave.on good terms for the most part but you didn't feel that the
management was fare so you picked myself up and find a new job and resigned.
You weren't asked to leave nor did the management suggest that.
   
  Now you see that organization is posting the posting the position you held
on the internet.
   
  I thought I would like to post a message on the list stating that if
anyone was going to apply for that position they could give me a call or
email off list and I could give that person a heads up regarding what to
expect at the interview, possibly the people he/she would meet and maybe the
kind of questions that would be asked.
   
  Also, what they might expect if hired in the future based on my past
experience while employed there.
   
  Would you consider this ethical?

--
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: Modify command - lower case command text possible or not?

2005-12-13 Thread Gerhard Postpischil

Chris Mason wrote:

Yes, indeed, the 2250 was a large and expensive device which - as I vaguely
recall - was designed for use in research establishments which - to be
provocative - probably lived off federal grants, establishments where
describing their computer with the prefix super would not be
inappropriate.


I was waiting for S. Metz to respond - he has a better recollection of 
these things. I never used a 2250 as a console, and I do not remember 
any SYSGEN option to support them. However, the IBM 360/165 (and later 
the 168) appeared to have some of the 2250 hardware (with different 
keyboard and function keys) as an integrated console. Perhaps that's 
what you saw?


The first ever 2250 I saw was in Building 1 at Goddard Space Flight 
center, where I had to pass by it regularly to get to the moonshine 
DCS system. I never saw it powered on or in use. And the only 
specific software I saw for it was a Pool game G.


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: Determine IMS Environ From MVS Cntl Blks

2005-12-13 Thread Avram Friedman
On Mon, 12 Dec 2005 09:18:31 -0600, Bill Kotchish [EMAIL PROTECTED]
wrote:

I need a way to determine if I, as an executing program, am running in
an online or batch environment.  By online, I mean either IMS online or
CICS.

I found a program entitled COB2JOB on the web that gives examples of
various MVS Control Block addresses and useful data.  In one section of
this program, there is reference to the TCB and at the 53rd address, the
TCBEXT2 (Common Extension) and at offset 21, the address of the AFCB.  The
program says if there is a valid (non-zero) address in there, then we must
be under CICS control;  otherwise, batch.

I tested this in an IMS online environment and this address is zero,
so
I cannot use this to determine anything IMS.

Do you know of an area in the MVS Control Blocks that will
definitively
indicate being under IMS online control, similar to this CICS solution?

I'm obviously not a sys prog, so make it simple for this semi-retired
53-year-old.  Thanks 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

1. Look at the PCB list,
If the I/O PCB is not the first PCB in the list
Then it is not a MPP, BMP, FMR

In general any program written in the last 20 years should have COMPAT=YES
specified in its PSB specification so there will be an I/O PCB

2. Issue the INQY DLI CALL
The format of the call is document in IMS V9 Appl. Programming: DB


3. Evaluate the results ... the contents of the I/O area is documented in
the same manual

Could always post a question to the IMS listserver ... write me if you
want to sign up.

--
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: Converting TOD to Local Time

2005-12-13 Thread Paul Gilmartin
In a recent note, john gilmore said:

 Date: Tue, 13 Dec 2005 12:25:06 +
 
 Beware of the complications of daylight time, summer time or whatever if you
 use it.
 
I'll expand on this.  In such locations, converting a 6-month-old
TOD value will more likely than not result in a value in error by
an hour.  So:

If the timestamp already has CVTLSO applied, good; otherwise:
Use a table of the canon of leap seconds to correct for leap seconds.
Note that this depends on when the site may have installed a
Sysplex Timer -- prior to installation, the Leap Second offset
will be zero; afterwards, use the table.

Once you have corrected for Leap Seconds, the CRTL function,
localtime() can give the mostly correct local time in its format,
but beware yet:

o You must apply an affine transformation to convert microseconds
  based in 1900 to seconds based in 1970.

o The granularity of localtime() is one second.

o The z/OS version of localtime() may give incorrect results for
  timestamps older than about 1974, when the U.S. DST convention
  changed.  (But was there a TOD clock then?)  Most OS other than
  z/OS do better.  A similar problem may arise circa 2007, when
  it is proposed again to change the U.S. DST convention.

-- gil
-- 
StorageTek
INFORMATION made POWERFUL

--
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: Determine IMS Environ From MVS Cntl Blks

2005-12-13 Thread Bill Kotchish
No other IMS environment.  I want to be able to distinguish IMS online 
from
IMS batch.

-Original Message-
Sorry for my inadequate knowledge, but which IMS environment other than
MPP,BMP,DLIbatch you're referring to ?

-Messaggio originale-
Thanks, Massimo, but I suspect that DFS would show up under online 
(MPP),
batch (DLI) or that crazy combo Batch-Message (BMP). . .

-Original Message-
LA 7,X'10'
L  7,0(7)
L  7,0(7)
L  7,4(7)Pointer to current TCB
L  7,X'B4'(7) Pointer to JSCB and then TCBJSCBB LA 6,X'168'(7) Here you'll
fine the main program - JSCBPGMN

Within JSCBPGMN you can trigger your application because if it's like 'DFS%'
you should be IMS, like 'DFH%' CICS, like 'IKJ%' TSO and so on for every
known prefix environment.

--
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: Bang!

2005-12-13 Thread Steve Comstock

Phil Payne wrote:

http://www.channelregister.co.uk/2005/12/12/oil_blast_northgate/

It will be interesting to see how many companies really do have effective 
continuity plans.


Pictures here:

http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/05/in_pictures_depot_fire_continues/html/1.stm



For both of these URIs I got domain_name could not be found. Anyone
else have that problem?

Kind regards,

-Steve Comstock

--
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: Bang!

2005-12-13 Thread John Wynton
Steve:

Try this (and watch for wrap - both links work for me):

http://news.bbc.co.uk/1/hi/in_pictures/4524150.stm

John Wynton
Themis Training
800-756-3000 Toll Free
910-673-1427 Direct
908-723-5064 Cell
[EMAIL PROTECTED]
http://www.themisinc.com 

 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Steve Comstock
Sent: Tuesday, December 13, 2005 10:29 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Bang!

Phil Payne wrote:
 http://www.channelregister.co.uk/2005/12/12/oil_blast_northgate/
 
 It will be interesting to see how many companies really do have
effective continuity plans.
 
 
 Pictures here:
 
 http://news.bbc.co.uk/1/shared/spl/hi/pop_ups/05/in_pictures_depot_fir
 e_continues/html/1.stm
 

For both of these URIs I got domain_name could not be found. Anyone
else have that problem?

Kind regards,

-Steve Comstock

--
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: Bang!

2005-12-13 Thread Steve Comstock

John Wynton wrote:

Steve:

Try this (and watch for wrap - both links work for me):

http://news.bbc.co.uk/1/hi/in_pictures/4524150.stm

John Wynton


Thanks all. Problem was a power glitch that flipped
my DSL modem. Reset it and all is well.

Kind regards,

-Steve Comstock

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


leap-second computations with STCKE values

2005-12-13 Thread john gilmore
IBM has updated its Principles of Operation cumulative leap seconds table 
prospectively.  This table already includes the positive leap second that 
will be added at the end of this year, 2005.


The table

yearm   dom doy Óls STCKE (9 high bytes)
19001   1   1   0   x’00’
19721   1   1   0   x’008126d60e4600’
19727   1   183 1   x’00820ba9811e24’
19731   1   1   2   x’0082f300eee248’
19741   1   1   3   x’0084bde971446c’
19751   1   1   4   x’008688d2334690’
19761   1   1   5   x’008853baf578b4’
19771   1   1   6   x’008a1fe59520d8’
19781   1   1   7   x’008beace5752fc’
19791   1   1   8   x’008db5b7198520’
19801   1   1   9   x’008f809fdbb744’
19817   1   182 10  x’0092305c0fcd68’
19827   1   182 11  x’0093fb44d1ff8c’
19837   1   182 12  x’0095c62f9431b0’
19857   1   182 13  x’00995d40f517d0’
19881   1   1   14  x’009dda69a557f8’
19901   1   1   15  x’00a1117d063e1c’
19911   1   1   16  x’00a33c65c78040’
19927   1   182 17  x’00a3ec21fc8664’
19937   1   182 18  x’00a7b70abeb888’
19947   1   182 19  x’00a981f380eaac’
19961   1   1   20  x’00ac34336fecd0’
19977   1   182 21  x’00aee3efa40df4’
19991   1   1   22  x’00b1962f930518’
20051   1   1   23   x’00BE251097973C’

can be searched in a variety of ways, most of them bad.  For the purpose of 
determining how many leap-second units to add to the nine high-order bytes 
of an STCKE value, the use of glb (greatest-lower-bound) seeking binary 
search is optimal.


A PL/I procedure that illustrates this scheme is

getlsk: procedure(stcke9, lstp, leapsec) returns(aligned bit) reorder;

declare (stcke9 aligned bit(72) nonassignable,
 lstp pointer nonassignable,
 leapsec binary fixed(15,.0)) assignable)
 parameter ;

declare 1  LST based(lstp),  /* leap-seconds table */
 2 lts binary fixed(31,0), /* low table subscript */
 2 hts binary fixed(31,0),   /* high table subscript */
 2 tab(0 refer(LST.lts):1 refer(LST.hts)),
3 year binary fixed(15,0), /* year */
3 moyr binary fixed(15,0),/* month of year */
3 domo binary fixed(15,0),   /* cday of month */
3 doyr binary fixed(15,0),/* day of year */
3 lscu binary fixed(15,0), /* leap seconds, cumulative */
3 stc9 aligned bit(72) ;  /* STCKE value (h/o nine bytes) */

declare (hi, himin, lo, mi) binary fixed(31,0) ;

declare (bounded, search, search_higher) aligned bit ;

declare (F0 value(0b), F1 value(1b), F2 value(10b)) binary fixed(31,0) ;

lo, himin = LST.tls ;
hi = LST.ths ;
do search = (lo = hi) repeat(lo = hi) while(search) ;
 mi = lo + (hi - lo)/F2 ;
 search_higher = (stcke9 = LST.tab.stc9(mi))
 if search_higher then lo = mi + F1 ;
 else hi = mi - F1 ;
end ;
bounded = (hi = himin) ;
if bounded then leapsec = LST.tab.lscu(hi) ;
return(bounded) ;

end getlsc ;

This scheme does NOT seek a match for its search argument.  It instead seeks 
a glb for this search argument in the table it searches.  It thus fails here 
only for STCKE9   the value of the the first LST.tab.stc9 element in this 
ordered or partially ordered table, which is precluded here.


John Gilmore
Ashland, MA 01721-1817
USA

_
Express yourself instantly with MSN Messenger! Download today - it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


--
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: Bang!

2005-12-13 Thread Lizette Koehler
I was able to access both sites Steve.  Not sure what your problem is  ;-)

Lizette

 
 
 For both of these URIs I got domain_name could not be found. Anyone
 else have that problem?
 
 Kind regards,
 
 -Steve Comstock

--
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: Its a question of ethics

2005-12-13 Thread Ted MacNEIL
Posting your message here would be unethical, 
IMHO. 

However if you stated something like: Hey I 
used to work at company A 
and see they are hiring

I wouldn't do either.
Too much, these days, is actionable.
Especially in a country where litigation is a 
national passtime.

I would never offer my opinion (publicly), nor 
offer to offer my opinion, on work/job 
conditions of any past, or present, employer.

-teD
Me? A skeptic? I trust you have proof!

--
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: Bang!

2005-12-13 Thread Ed Finnell
 
In a message dated 12/13/2005 10:07:07 A.M. Central Standard Time,  
[EMAIL PROTECTED] writes:

Thanks  all. Problem was a power glitch that flipped
my DSL modem. Reset it and all  is well.




It's not hooked in to your UPS?

--
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: Bang!

2005-12-13 Thread Ed Finnell
 
In a message dated 12/13/2005 10:32:38 A.M. Central Standard Time,  
[EMAIL PROTECTED] writes:

That's a  great point. It was installed while I was
away and I didn't even think of  that.




Jots and tittles, jots and tittles..

--
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: Converting TOD to Local Time

2005-12-13 Thread Kirk Talman
Where is STKCONV macro located?  Is it available at z/OS 1.4?

 IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU wrote on 12/13/2005
 07:07:18 AM:
 
  We are using an Assembler program to analyse SMF output records
  of CICS transactions.
  The timestamps in the CICS SMF records are in TOD format.
  In order to get a readable timestamp we are using the STKCONV macro,
  but this gives us the GMT time rather than our local time.



-
The information contained in this communication (including any
attachments hereto) is confidential and is intended solely for the
personal and confidential use of the individual or entity to whom it is
addressed.  The information may also constitute a legally privileged
confidential communication.  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
communication in error and that any review, dissemination, copying, or
unauthorized use of this information, or the taking of any action in
reliance on the contents of this information is strictly prohibited.
If you have received this communication in error, please notify us
immediately by e-mail, and delete the original message.  Thank you

--
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: SSL Problems -- RESOLVED!!

2005-12-13 Thread Chase, John
There were a few errors of omission corrected as follows:

1.  Linklisted and APF-authorized the GSK.SGSKLOAD library;
2.  Added the GSK.SGSKLOAD library to the * profile in class PROGRAM;
3.  Added PARM='POSIX(ON)/' to the EXEC card (this cured the U4038 abend);
4.  Defined all the IRR.DIGTCERT.* profiles in the FACILITY class and
PERMITted the Production batch userID to them with READ (RACF SAG at
20.2.1.1);
5.  Added our installation's SYSTCPD dataset to the jobstream (DD
statement);
6.  Submitted the job via the Production batch userID instead of my own (the
Prod. batch userID owns the digital certs and keyring).

That's all there was to it.  :-)

Thanks for your ideas and responses.

-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: Converting TOD to Local Time

2005-12-13 Thread Farley, Peter x23353
SYS1.MACLIB(STCKCONV) since a long time ago...  before z/OS, at least.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 13, 2005 11:56 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Converting TOD to Local Time

Where is STKCONV macro located?  Is it available at z/OS 1.4?

_
This message and any attachments are intended only for the use of the addressee 
and
may contain information that is privileged and confidential. If the reader of 
the 
message is not the intended recipient or an authorized representative of the
intended recipient, you are hereby notified that any dissemination of this
communication is strictly prohibited. If you have received this communication in
error, please notify us immediately by e-mail and delete the message and any
attachments from your system.

--
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: Converting TOD to Local Time

2005-12-13 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Kirk Talman
 
 Where is STKCONV macro located?  Is it available at z/OS 1.4?

Yes, but the correct spelling is STCKCONV.  Look in SYS1.MACLIB.

-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


z/OS V1R7 Migration Guide

2005-12-13 Thread Ted MacNEIL
I have tried to find this on the IBM website.
No luck.
Does anybody know:
1. Document Number?
2. A link?
-teD
Me? A skeptic? I trust you have proof!

--
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: z/OS V1R7 Migration Guide

2005-12-13 Thread Mark Jacobs
Migration guide (from zOS 1.4) is GA22-7499-07

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Ted MacNEIL
Sent: Tuesday, December 13, 2005 12:45 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: z/OS V1R7 Migration Guide

I have tried to find this on the IBM website.
No luck.
Does anybody know:
1. Document Number?
2. A link?
-teD
Me? A skeptic? I trust you have proof!

--
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: z/OS V1R7 Migration Guide

2005-12-13 Thread Tribble, Robert
GA22-7499-07 z/OS V1R7.0 Migration - All supported migration paths 
[ Search | Browse ]  
0.67  
4.76 
http://www-03.ibm.com/servers/eserver/zseries/zos/bkserv/zos_migration_manuals.html

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED]
Behalf Of Ted MacNEIL
Sent: Tuesday, December 13, 2005 12:45 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: z/OS V1R7 Migration Guide


I have tried to find this on the IBM website.
No luck.
Does anybody know:
1. Document Number?
2. A link?
-teD
Me? A skeptic? I trust you have proof!

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

CONFIDENTIALITY NOTICE: The Ohio Public Employees Retirement System intends 
this e-mail message, and any attachments, to be used only by the person(s) or 
entity to which it is addressed. This message may contain confidential and/or 
legally privileged information.  If the reader is not the intended recipient of 
this message or an employee or agent responsible for delivering the message to 
the intended recipient, you are hereby notified that you are prohibited from 
printing, copying, storing, disseminating or distributing this communication.  
If you received this communication in error, please delete it from your 
computer and notify the sender by reply e-mail.

--
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: z/OS V1R7 Migration Guide

2005-12-13 Thread Walt Farrell

On 12/13/2005 12:45 PM, Ted MacNEIL wrote:

I have tried to find this on the IBM website.
No luck.
Does anybody know:
1. Document Number?
2. A link?



http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/Shelves/EZ2ZO10F?filter=z%2FOS+v1r7.0+migrationSUBMIT=Find
or http://makeashorterlink.com/?E17F62E4C

Walt

--
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: z/OS V1R7 Migration Guide

2005-12-13 Thread John Eells

Ted MacNEIL wrote:

I have tried to find this on the IBM website.
No luck.
Does anybody know:
1. Document Number?
2. A link?


Title:  z/OS V1R7.0 Migration
Document Number: GA22-7499-07

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/E0Z2M117/CCONTENTS?SHELF=EZ2ZO10fDN=GA22-7499-07DT=20050719142818

--
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: HMC load failure - IPL address 0000 invalid

2005-12-13 Thread Bielskie, Stephen
Patrick,

You say you do an ACTIVATE on a LOAD profile, which leads me to believe you 
are doing an Activate on the image with the Load during activate specified. 
 You probably need to check the image profile.

First double-click on the LPAR image from the CPC Images area.  Make sure that 
the activation profile is the same as the one you want to use.  

If it is, then , close the window, select the image from the image screen, then 
double-click customize/delete activation profiles.  Select the image profile 
and click 'customize', then click the load tab and see what it has.  This is 
defaulted to  Load Address.

Regards,
Steve



-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED]
Behalf Of Schlehuber, Patrick
Sent: Tuesday, December 13, 2005 1:07 PM
To: IBM-MAIN@BAMA.UA.EDU
Subject: HMC load failure - IPL address  invalid


Starting this week I am now experiencing HMC failures IPL'ing my z/OS systems. 
My load profiles look correct, but I now receive an error stating  The load 
address is not configured in the partition and displays a load address of 
. The IPL parm looks correct, just the LOAD address is . This occurs 
when I do an activate to the LOAD profile. The IPL is successful if I do a 
manual LOAD. I see this error using two different HMCs at different code 
levels. I am experiencing this on 2 different processors.


A

==
Please access the attached hyperlink for an important electronic communications 
disclaimer: 

http://www.csfb.com/legal_terms/disclaimer_external_email.shtml

==

--
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: Key code for licensed material

2005-12-13 Thread Bruce Black
I don't do installations, but if you are referring to the licensed 
manuals and to z/OS 1.7, there are no licensed manuals in 1.7.  All 
documentation is GA. 


For a statement aboutr this, see
http://www-03.ibm.com/servers/eserver/zseries/zos/bkserv/
and scroll down

--
Bruce A. Black
Senior Software Developer for FDR
Innovation Data Processing 973-890-7300
personal: [EMAIL PROTECTED]
sales info: [EMAIL PROTECTED]
tech support: [EMAIL PROTECTED]
web: www.innovationdp.fdr.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


FW: HMC load failure - IPL address 0000 invalid

2005-12-13 Thread Eatherly, John D [IT]
From Mike Reddy...
A couple of questions first: What changed? Are we using an Image profile
to activate the lpar, or just a LOAD profile?

A load profile has a pre-determined load address and parm specified. We
don't use them here because we change sysres's every time almost.
An image profile defines the lpar storage, weight, cpu, etc, and
includes an OPTIONAL load screen to automatically IPL the lpar to a
pre-determined address. We don't use that option either.

Double click exact icon that is being ACTIVATED for the system to IPL
(it may be a grouping and not that actual image icon) and look at the
top for the assigned profile
Then click Change options to view that profile and look for the LOAD
tab that shows the predetermined load address. If it is in fact zero,
the HMC is doing what it was told to do.




Starting this week I am now experiencing HMC failures IPL'ing my z/OS
systems. My load profiles look correct, but I now receive an error
stating  The load address is not configured in the partition and
displays a load address of . The IPL parm looks correct, just the
LOAD address is . This occurs when I do an activate to the LOAD
profile. The IPL is successful if I do a manual LOAD. I see this error
using two different HMCs at different code levels. I am experiencing
this on 2 different processors.


Anyone sees something like this before? I have a hard time believing it
is a HMC bug as it has been operating many months before with no
problem.

Pat

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


Curiousity question: XES instructions?

2005-12-13 Thread McKown, John
Yeah, they aren't documented and likely never will be. And, most likely,
everybody who knows very much about them is under an NDA. But I just
read an email on the Flex-ES list where z/OS will put out a message if
they are missing (although it continues to run).

So, can anybody say anything to hint about what they are? I would guess
that they are somehow related to communicating with a Coupling Facility?

Just curious.

--
John McKown
Senior Systems Programmer
UICI Insurance Center
Information Technology

This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its'
content is protected by law.  If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, 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


Re: Converting TOD to Local Time

2005-12-13 Thread Richard Peurifoy
CICS logs the local offset in the SMF record mapped by CICS macro 
DFHMNSMF at label

SMFMNDTO, and leap seconds are at SMFMNLSO.

john gilmore wrote:

If you add the signed difference between UTC/GMT values and your local 
time values in Israel to the STCK[E] values BEFORE using STCKCONV you 
will get the results you seek  There is a table of appropriate 
time-unit multiples in STCK[E] units in ther current Principles of 
Operation.


Beware of the complications of daylight time, summer time or whatever 
if you use it.


John Gilmore
Ashland, MA 01721-1817
USA

_
On the road to retirement? Check out MSN Life Events for advice on how 
to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement


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


SHARE in Seattle

2005-12-13 Thread Brian Peterson
Greetings to all! It's time to start thinking about the Winter SHARE, March
5-10, 2006 in Seattle, Washington. We have an excellent slate of sessions,
and a bevy of willing speakers. All we need is you! We hope you'll be able
to attend, and please look us up if you do. Check out http://www.share.org
for registration details.

Skip Robinson and Brian Peterson
MVS Program Managers


Getting to the latest z/OS
--
In case you haven't heard, z/OS 1.7 is now available, and is the last
release you can migrate to in one step from z/OS 1.4.  z/OS 1.7 also
includes many new features you need to know about - for example, are your
JES2 exits ready for the major changes in z/OS 1.7?  SHARE is the place to
get the latest information to help plan your migration.  Highlighted
sessions include:

Migrating to z/OS 1.7 Part 1 - Get Ready
Migrating to z/OS 1.7 Part 2 - Get Set
Migrating to z/OS 1.7 Part 3 - Go!
JES2 z/OS 1.7 Migration
JES3 z/OS 1.7 New Features
What's New in z/OS 1.7 UNIX
JES2 z/OS 1.7 Large Spool, NJE over TCP/IP, and Other Features That
  Did Not Make The Announcement Letters
JES2  JES3 z/OS 1.7 SSI and Other Common Function Enhancements
z/OS 1.7 Changes in MVS Device Allocation Serialization: Q4, CHGDEVS
  and Group Locking
The z/OS 1.7 Health Checker
Writing Your Own Health Checks for z/OS 1.7
SDSF Changes for z/OS 1.7
New Large Format Data Sets in z/OS 1.7
z/OS 1.7 User Experiences (first two companies)
z/OS 1.7 User Experiences (two more companies)
JES2 z/OS 1.7 Exit Conversion User Experience
JES2 z/OS 1.7 User Experience (three companies)
z/OS 1.7 RACF User Experience
z/OS 1.7 Health Checker User Experience


Introductory Sessions
-
You've just joined the ranks as a new sysprog, or perhaps you've just
picked up some new job responsibilities.  Of course, you always get to
support everything you previously had.  How do you get up to speed
quickly on the new stuff?  Why SHARE, of course!

Introduction to RMF Data Collection and Reports Analysis
ISPF Boot Camp (four parts)
Dynamic ISPF: How to Eliminate All Those Datasets in the Logon Proc
Configuring ISPF for Fun and Profit
Introduction to JES2 for New Systems Programmers
GRS 101: Non-Sysplex Ring, Sysplex Ring and Star
z/OS Websphere Application Server Basics
DFSMS Basics: SMS in a Nutshell
DFSMS Basics: Getting Started with SMS
DFSMS Basics: Introduction to DFSMShsm
DFSMS Basics: The ABCs of DFSMSrmm (two parts)
DFSMS Basics: ICF Catalog Management
DFSMS Basics: What is VSAM?
A z/OS Textbook for Beginners
How SMS Volume Selection Works
Assembler 101 Boot Camp (five parts)
Introduction to Parallel Sysplex
Even More of What You Do When You're A CPU


System Programmer Topics

In an OCO world, where can you go to learn about how things really work?
Why, SHARE of course! Here is a sample of the down and dirty sessions we
offer:

ISPF Hidden Treasures
ISPF Panels
Exploring Multi-Application / Multi-System Diagnostic Procedures on z/OS
Unicenter CA-MIM Resource Sharing: z/OS and z/VM Versions extend support
  to Linux
Installing Omegamon in a Large Environment: A 12-Step Program
Out of CSA: Diagnosing the Dump
Linux and z/OS Playing Nicely Together - Two Are Better Than One
Parallel Sysplex Gems
Common z/OS Problems You Can Prevent
FICON Enhancements for the SAN Information Highway
zSeries Time Synchronization Update (STP)
A Total Overhaul - z9 Conversion User Experience
z/OS Internals: The Dispatcher


Hands-on Lab

In the SHARE hands-on lab you will have a unique opportunity to take the
controls and actually perform installation and customization activities on
a live system under the supervision of an instructor. Here's a sample of
the topics offered:

ISPF Boot Camp Hands-On Lab (two parts)
Understanding and Using the GRS Monitor Tool - Hands-On Lab
Out of CSA: Diagnosing the Dump Hands-On Lab
Diagnosing Common WebSphere Problems Lab (two parts)
z/OS UNIX Shell Scripting - A Hands-on Lab
Configuring OpenSSH on z/OS - A Hands-On Lab for the System Programmer
WBEM/CIM exploitation on the Mainframe - Hands-On Lab
UNIX System Services Tools and Toys - Hands-On Lab
Problem Determination with Dumps: IPCS Techniques Hands on Lab
RMF Data Portal - Hands-on Lab
Problem Determination with Dumps: Diagnosing Abends Hands-On Lab
RMF Spreadsheet Reporter - Hands-on Lab (two parts)
MVS Display Commands Hands-On Lab


Don't Miss
--
In addition to the sessions above, consider these don't miss:

MVS Program Opening and z/OS Keynote Presentation
Cheryl Watson's Hot Flashes
WSC Short Stories and Tall Tales
JES2: Esprit de Corps
Bit Bucket
Fully Wired Hot Topics
z/OS SysProg Goody Bag


There will be literally hundreds more sessions presented at SHARE in
Seattle.  For additional information, please visit the SHARE website
http://www.share.org. We hope to see you in Seattle!

Skip and Brian

--
For IBM-MAIN subscribe / 

Re: Converting TOD to Local Time

2005-12-13 Thread Paul Gilmartin
In a recent note, Richard Peurifoy said:

 Date: Tue, 13 Dec 2005 13:12:55 -0600
 
 CICS logs the local offset in the SMF record mapped by CICS macro
 DFHMNSMF at label
 SMFMNDTO, and leap seconds are at SMFMNLSO.
 
Does CICS cut a new record triggered by DTO or LSO change?

This would be a good thing for SMF itself to do.

-- gil
-- 
StorageTek
INFORMATION made POWERFUL

--
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: Curiousity question: XES instructions?

2005-12-13 Thread R.S.

McKown, John wrote:

Yeah, they aren't documented and likely never will be. And, most likely,
everybody who knows very much about them is under an NDA. But I just
read an email on the Flex-ES list where z/OS will put out a message if
they are missing (although it continues to run).

So, can anybody say anything to hint about what they are? I would guess
that they are somehow related to communicating with a Coupling Facility?


I'm not sure, what do you mean, but XES is set of API macros. Those 
macros names begin with IXL... and are IMHO quite well described.

Well... maybe you mean special CP instructions (opcodes) ?

--
Radoslaw Skorupka
Lodz, Poland

--
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: Curiousity question: XES instructions?

2005-12-13 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of R.S.
 Sent: Tuesday, December 13, 2005 3:14 PM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Re: Curiousity question: XES instructions?
 
 
 McKown, John wrote:
  Yeah, they aren't documented and likely never will be. And, 
 most likely,
  everybody who knows very much about them is under an NDA. But I just
  read an email on the Flex-ES list where z/OS will put out a 
 message if
  they are missing (although it continues to run).
  
  So, can anybody say anything to hint about what they are? I 
 would guess
  that they are somehow related to communicating with a 
 Coupling Facility?
 
 I'm not sure, what do you mean, but XES is set of API macros. Those 
 macros names begin with IXL... and are IMHO quite well described.
 Well... maybe you mean special CP instructions (opcodes) ?
 
 -- 
 Radoslaw Skorupka
 Lodz, Poland

Right, the actual hardware instructions are what I meant. Sorry that I
didn't say it better.

I did find out, basically, what I wanted to know on an IBM site. They
are the instructions used to communicate with the Coupling Facility. At
least, as best as I can tell.

--
John McKown
Senior Systems Programmer
UICI Insurance Center
Information Technology

This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its'
content is protected by law.  If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, 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


Re: Converting TOD to Local Time

2005-12-13 Thread Richard Peurifoy

These fields are in the CICS header of each SMF record CICS produces.
A CICS SMF record may have more than one event (transaction, etc.) in it,
but I don't know off hand if  there is some check to force a new record  
at 
daylight saving or leap second changes.




[EMAIL PROTECTED] wrote:


In a recent note, Richard Peurifoy said:

 


Date: Tue, 13 Dec 2005 13:12:55 -0600

CICS logs the local offset in the SMF record mapped by CICS macro
DFHMNSMF at label
SMFMNDTO, and leap seconds are at SMFMNLSO.

   


Does CICS cut a new record triggered by DTO or LSO change?

This would be a good thing for SMF itself to do.

-- gil
 



--
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: Replacement for 3179 terminals locally attached to a 3174 controller

2005-12-13 Thread Hal Merritt
Don't define NIP consoles. Let it fall through to the HMC. Works really
well and you always know where the NIP console is going to be.

Visara used to offer some 'thin clients' but spun that product line to
another company. They offered both Windows based as well as Linux based.
We had a need for one coax connected user terminal and the thin client
worked well for us. 

The Linux client supports coax, the Windows version is IP only. 

HTH and the best of the season 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Charles Macniven
Sent: Monday, December 12, 2005 12:59 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Replacement for 3179 terminals locally attached to a 3174
controller

Hi,
Is there a stable 3179 terminal emulator available for a Windows/Unix PC
that would allow the emulation of Master/Nip Consoles connected to a
3174?

Thanks and cheers,
Charles MacNiven.

 

--
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: COMMAND field of TSO LOGON panel

2005-12-13 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 12/12/2005
   at 08:03 PM, Paul Gilmartin [EMAIL PROTECTED] said:

My guess would be that your site's TSO JCL procedure runs your
session before it ever gets to execute the command in your LOGON
panel.

Don't confuse the JCL with the initial command. The JCL runs the TMP,
and that's it. If the EXEC has a PARM then the TMP will process that
before it processes SYSTSIN.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

--
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: COMMAND field of TSO LOGON panel

2005-12-13 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on
12/13/2005
   at 10:23 AM, Luo Johnny [EMAIL PROTECTED] said:

Subject: COMMAND field of TSO LOGON panel

The TMP will execute any command in PARM prior to the command on the
logon panel. You need to ask your systems group for assistance.

Note: some installations use a logon proc that tests for the existence
of a tailoring procedure under the HLQ of the user, e.g.,
SYSUID..EXEC($LOGON). If your shop supports this then you can put
your ALLOCATE, TSOLIB, etc., commands there.
 
-- 
 Shmuel (Seymour J.) Metz, SysProg and JOAT
 ISO position; see http://patriot.net/~shmuel/resume/brief.html 
We don't care. We don't have to care, we're Congress.
(S877: The Shut up and Eat Your spam act of 2003)

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


PD REPLACE,PAGE=(sys1.page01,sys1.page04)

2005-12-13 Thread Roland Schiradin
Hi,

now speaking as a DB2 sysprog.

Today the mvs group issued the PD REPLACE,PAGE=(sys1.page01,sys1.page04)
command
which ends successfully. However seconds later we got several abends in DB2
V8
dealing with RC00C90101, seconds later several abends S02A RSN8 and then
several
STC fails with different kind of abends mostly S0C4. This includes CICS,
TCPIP and
third party software and also the CATALOG asid.

Environment z/OS R4. The logrec shows four abends for RC00C90101 followed by
hundreds of S02A RC8. Because of huge number of dumps written by CICS among
other
we had to cancel CICS and other STC. After restart of DB2 some VSAM datasets
gets IDC-Errors. We're able to delete those VSAM cluster and start DB2
recover.

We`ve been able to delete those datasets from a different LPAR sharing the
data.

I was wondering why so I issue a F CATALOG,RESTART and after this all VSAM
cluster
looks fine. But still VTAM dumps several S0C1 abends so we end up in an IPL
later.

During the PD REPLACE we had about 14 active pagedatasets on this image. So
you see
we are storage constraint at this time because of end of year activities.

I know it's just feeling but could the PD REPLACE cause the problems we've
seen?
Not sure if the mvs group will open a PMR.

Roland

--
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: FW: HMC load failure - IPL address 0000 invalid

2005-12-13 Thread Pat Schlehuber
On Tue, 13 Dec 2005 13:11:17 -0600, Eatherly, John D [IT]
[EMAIL PROTECTED] wrote:

From Mike Reddy...
A couple of questions first: What changed? Are we using an Image profile
to activate the lpar, or just a LOAD profile?

A load profile has a pre-determined load address and parm specified. We
don't use them here because we change sysres's every time almost.
An image profile defines the lpar storage, weight, cpu, etc, and
includes an OPTIONAL load screen to automatically IPL the lpar to a
pre-determined address. We don't use that option either.

Double click exact icon that is being ACTIVATED for the system to IPL
(it may be a grouping and not that actual image icon) and look at the
top for the assigned profile
Then click Change options to view that profile and look for the LOAD
tab that shows the predetermined load address. If it is in fact zero,
the HMC is doing what it was told to do.




Starting this week I am now experiencing HMC failures IPL'ing my z/OS
systems. My load profiles look correct, but I now receive an error
stating  The load address is not configured in the partition and
displays a load address of . The IPL parm looks correct, just the
LOAD address is . This occurs when I do an activate to the LOAD
profile. The IPL is successful if I do a manual LOAD. I see this error
using two different HMCs at different code levels. I am experiencing
this on 2 different processors.


Anyone sees something like this before? I have a hard time believing it
is a HMC bug as it has been operating many months before with no
problem.

Pat

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

I have done exactly as you said. We do not use image profiles to IPL, just
to setup the LPARs, we strictly use LOAD profiles to IPL. The LOAD profile
has an IPL Address and an IPL Parm as I expect it should. But when this
Profile is actually ACTIVATED, it comes back flagging a Load address of
, but it does show the valid IPL Parm. Double clicking on the LPAR
does show the LOAD profile I expect to be ACTIVATED.

I have passed this problem on to IBM and they are chewing on the HMC logs.

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


Why does LMPUT(ISPF Library service)?

2005-12-13 Thread Johnny Luo
Recently I've been trying to write a REXX which can be invoked
directly in ISPF to add a new member to an existing PDS.

My plan is:Invoke the REXX--It asks you for the existing PDS name
and  the new member name which you want to addaccomplish.

After  reading some articles,I decide to use ISPF library services .
Manual says to add a member you should resort to LMMADD.
However,it also says to use LMMADD,LMPUT must be issued
first.

The LMPUT service writes one logical record to the data set associated
with a given data ID
But,what I want to do is just adding a member to PDS,then why I must
write a logical record to PDS first?

--
Best Regards,
Johnny Luo

--
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: IBM backup restoration procedure

2005-12-13 Thread John S. Giltner, Jr.

Dash wrote:

Hello,

I've an existing IBM OS/390 backup taken in a tape.
Now I want to restore this backup from tape to disk. I searched in
various IBM manuals and search engines and I'm unsuccessfull in getting
any information on how to restore this backup.

Can somebody give me either pointers or exact steps (MVS commands) on
how to restore this backup?

Thanks in advance. 


Regards,
Dash



What product/utility was used to create the backup?

There is no backup command in MVS and thus there is no restore 
command.  They are many backup programs and utilities that can be used 
to backup files in MVS.  Each program and utility has it own 
commands/JCL to restore the files.


--
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: Modify command - lower case command text possible or not?

2005-12-13 Thread Walter Rue

Gerhard Postpischil wrote:


Chris Mason wrote:

Yes, indeed, the 2250 was a large and expensive device which - as I 
vaguely

recall - was designed for use in research establishments which - to be
provocative - probably lived off federal grants, establishments where
describing their computer with the prefix super would not be
inappropriate.



I was waiting for S. Metz to respond - he has a better recollection of 
these things. I never used a 2250 as a console, and I do not remember 
any SYSGEN option to support them. However, the IBM 360/165 (and later 
the 168) appeared to have some of the 2250 hardware (with different 
keyboard and function keys) as an integrated console. Perhaps that's 
what you saw?


The first ever 2250 I saw was in Building 1 at Goddard Space Flight 
center, where I had to pass by it regularly to get to the moonshine 
DCS system. I never saw it powered on or in use. And the only 
specific software I saw for it was a Pool game G.


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

In my experience, 2250s were used only for CAD/CAM applications and had 
a rather large function key-pad attached (by cable).  I never saw or 
heard mention 3270 or operator console equivalent uses.  I last saw them

at Lockheed, Burbank in the early 1980s.

Walter

--
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: CA7 Question

2005-12-13 Thread John S. Giltner, Jr.

Michael Hall wrote:

I have been told that CA7 cannot start or control started tasks or started
jobs.  Can this be true?  A client of mine is starting all CICS regions as
batch jobs because of this.  Any information would be appreciated.

Thanks in advance,

Mike



Unless something has changed since we migrated off of CA-7 (10 years 
ago) this is true.  We had thought about using CA-7 manage our onlines, 
but we came to the conclusion that our onlines were more important than 
job scheduling.  If CA-7 had problems starting, we did not want our 
onlines down.


--
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: CA7 Question

2005-12-13 Thread Ed Gould

On Dec 13, 2005, at 10:01 PM, John S. Giltner, Jr. wrote:


Michael Hall wrote:
I have been told that CA7 cannot start or control started tasks or  
started
jobs.  Can this be true?  A client of mine is starting all CICS  
regions as

batch jobs because of this.  Any information would be appreciated.
Thanks in advance,
Mike


Unless something has changed since we migrated off of CA-7 (10  
years ago) this is true.  We had thought about using CA-7 manage  
our onlines, but we came to the conclusion that our onlines were  
more important than job scheduling.  If CA-7 had problems starting,  
we did not want our onlines down.



A curious item (lore?) at one time it was goodness to start CICS  
with a start command but in MVS there seems to me no real reason to  
do so anymore.


Ed

--
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: Replacement for 3179 terminals locally attached to a 3174 controller

2005-12-13 Thread Ed Finnell
 
In a message dated 12/13/2005 4:10:29 P.M. Central Standard Time,  
[EMAIL PROTECTED] writes:

Don't  define NIP consoles. Let it fall through to the HMC. Works really
well and  you always know where the NIP console is going to  be.




What if the HMC fails?

--
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: Why does LMPUT(ISPF Library service)?

2005-12-13 Thread Dave Salt

From: Johnny Luo [EMAIL PROTECTED]
My plan is:Invoke the REXX--It asks you for the existing PDS name
and  the new member name which you want to addaccomplish.



Johnny,

Rather than using LMINIT/LMMPUT/LMMADD (etc) it would be easier to create a 
new member using an edit macro. The REXX driver would look similar to this:



/* REXX to call the NEWMEMB edit macro */
say Enter data set and member name without quotes
pull dsn
address ispexec EDIT DATASET('dsn') MACRO(NEWMEMB)


The 'NEWMEMB' macro would look like this:


/* REXX edit macro to create an empty member */
address isredit
MACRO
SAVE
END


Hope that helps!

Dave Salt
SimpList(tm) - The easiest, most powerful way to surf a mainframe!
http://www.mackinney.com/products/SIM/simplist.htm

--
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: Mainframe to windows and windows to mainframe

2005-12-13 Thread thirumurugan
John,bill,chris,nobert and Frank
I am very much thankful for the information u have
all provided to me regarding the FTP to mainframe.
With all your inputs I had carried out to submit a PS
dataset creation JCL from windows to mainframe and it
worked. 
However, when I tried to issue the ls command I got
the below messages

ftp ls
200 Port request OK.
125 Nlst started OK
No jobs found on Held queue
250 Nlst completed successfully
ftp: 29 bytes received in 0.00Seconds
29000.00Kbytes/sec.

But the spool contains the below jobsand I had
logged with user id THIRU
THIRRES  JOB01131 THIRU1 PRINT  A  
506  
THIRMQAA JOB01132 THIRU1 PRINT  A  
507  
THIRMQAA JOB01134 THIRU1 PRINT  A  
508  
THIRRES  JOB01133 THIRU1 PRINT  A  
509  
THIRTESB JOB01140 THIRU1 PRINT  A  
510  
THIRTESB JOB01141 THIRU1 PRINT  A  
511  
THIRTESB JOB01151 THIRU1 PRINT  A  
512  
Hence I couldn’t able to retrieve the output(log)
back to windows. So is there any parameter that has to
be altered/added to the FTPDATA?

The below is my FTPDATA’s Jes interface options 
JESLRECL  80   
JESPUTGETTO   600
JESRECFM  F   
JESINTERFACELEVEL 1   
JESENTRYLIMIT 200

Kindly Advice me on this issue
-thiru


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.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


Using FTP to GET a job from a remote computer

2005-12-13 Thread גדי בן אבי
***
Your mail has been scanned by InterScan.
***-***


Hi,

I've tried using FTP to GET a job from a remote computer.

The remote computer has a file the contains an MVS job. I would like to 
transfer it directly to the internal reader.

If I do this from the remote computer, I can use 'quote site file=jes'  to send 
the file directly to the internal reader, but it looks like the FTP client on 
OS/390 v2.10 does not support this by using the 'locsite file=jes'.

Does anyone know if more current versions of z/OS support this?

TIA

Gadi


--
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: Using FTP to GET a job from a remote computer

2005-12-13 Thread Michael Sheehy
Gadi,


I may be wrong but I thought 2.10 supported this.

Have you checked the value of JESINTERFACELEVEL ?  

From memory I think it needs to be set to 2


Cheers,

Mick Sheehy (BSc. Comp Sci)
Systems Programmer, Information Technology
FAL Foodland Associated Limited
T:+61 (8) [9311 6082] F:+61 (8) [9311 6012] M:+61 [417 965 986] E:
[EMAIL PROTECTED]

Please be aware that I will be checking my email three times daily.  If
you require an expedited response, please contact me via telephone on
the above numbers.snip
This email message contains information that is confidential and which may be 
subject to privilege.

If you are not the intended recipient, you must not peruse, use disseminate or 
copy this message.

If you have received the message in error, please notify us immediately by 
facsimile or telephone 
and return the original to us by mail.  We will reimburse reasonable telephone 
and mail costs incurred
in this process. Thank you

--
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: Using FTP to GET a job from a remote computer

2005-12-13 Thread גדי בן אבי
***
Your mail has been scanned by InterScan.
***-***


Mick,

JesInterfaceLevel is set at 2.

Gadi

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Michael Sheehy
Sent: Wednesday, December 14, 2005 8:14 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: Using FTP to GET a job from a remote computer

Gadi,


I may be wrong but I thought 2.10 supported this.

Have you checked the value of JESINTERFACELEVEL ? 

From memory I think it needs to be set to 2


Cheers,

Mick Sheehy (BSc. Comp Sci)
Systems Programmer, Information Technology FAL Foodland Associated Limited
T:+61 (8) [9311 6082] F:+61 (8) [9311 6012] M:+61 [417 965 986] E:
[EMAIL PROTECTED]

Please be aware that I will be checking my email three times daily.  If you 
require an expedited response, please contact me via telephone on the above 
numbers.snip This email message contains information that is confidential and 
which may be subject to privilege.

If you are not the intended recipient, you must not peruse, use disseminate or 
copy this message.

If you have received the message in error, please notify us immediately by 
facsimile or telephone and return the original to us by mail.  We will 
reimburse reasonable telephone and mail costs incurred in this process. Thank 
you

--
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: z/OS V1.7 ServerPac DeliveryTime

2005-12-13 Thread Brian Peterson
I placed an order for z/OS 1.7 on September 20, 2005.  The order was never
fulfilled.  After investigating, IBM Software Manufacturing staff determined
that the order was simply stuck in the system and lost (along with five
others, I was told).  I just ordered z/OS 1.7 again - it took about four
days for the new order to be ready for internet download.

If you want to follow up with your order, you need to call IBM Software
Manufacturing at 800 879 2755 select option 2, then option 2, and ask them
what happened with your order.  They will need the order number - mine
started with the digits 2005.

Brian

On Tue, 13 Dec 2005 19:53:16 -0600, in bit.listserv.ibm-main Tom Longfellow
wrote:

Anybody have any knowledge of what the current delivery time is for a
ServerPac order via ShopzSeries?  Even my IBM rep has been unable to find
out.   We are approaching our 8th week of waiting and the order status on
the ShopzSeries site never changes.

--
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: Replacement for 3179 terminals locally attached to a 3174 controller

2005-12-13 Thread John Ticic
-- snip --
Don't  define NIP consoles. Let it fall through to the HMC. Works really
well and  you always know where the NIP console is going to  be.

What if the HMC fails?
-- snip --

You always have a service element that can accept NIP messages.

Depending on how you set up a GDPS environment, it can be a requirement to
ensure that no NIP consoles are active.

John.

--
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: Converting TOD to Local Time

2005-12-13 Thread Nick
I also have an assembler routine that does this  .. contact me offline for
the source code,

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Cwi Jeret
Sent: Tuesday, December 13, 2005 7:07 AM
To: IBM-MAIN@BAMA.UA.EDU
Subject: Converting TOD to Local Time

Hello,

We are using an Assembler program to analyse SMF output records
of CICS transactions.
The timestamps in the CICS SMF records are in TOD format.
In order to get a readable timestamp we are using the STKCONV macro,
but this gives us the GMT time rather than our local time.

Does anybody have an example of an ASSEMBLER routine to convert
the TOD time figures to our local time ?
Or any other solution for us ?

Thanks, Cwi Jeret  - Bank Hapoalim T.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

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