Re: z/OS 1.13 preview

2011-02-15 Thread Ed Gould
--- On Tue, 2/15/11, August Carideo  wrote:

VSE has come a long way since what a lot used to know it as
not up to par w/ Z/os for something's esp with right OEM s/w beats it in
others
( just my opinion , and yes I know what opinions are like no need to remind
me )

I cannot remember where my first run in with VSE was. It was a LONG time ago. 
Probably im the mid 70's (???). I think it was in St Louis at an IBM school 
there.We were trying to set up a 4331 for our New York Office. It was either 
there or out in the LA IBM office. All I can remember is that I did not like it 
in general. It was not consistant on how it handled "things" (control cards and 
the like) its been so long that the abiortion must have reconcieved. I dio 
remember thinking IBM was out of their gourd for propegatting it and it shouuld 
have been put on suicide watch (I would have helped pull ther trigger).
I hated St Louis and I disliked LA. I know I was even brought out for several 
interviews and they would not take no for an answer. One time I was out in the 
high desert west of LA in the middle on nowhere. They now use it to land the 
shuttle I think. at least they used a civilized OS there even though it was 
supposedly top secret and we couldn't even ask for IBM help.
I know dos had a die hard following but IBM should jave just said no more.


                                                                           
             Rob Schramm                                                   
                                                              To 
             Sent by: IBM              IBM-MAIN@bama.ua.edu                
             Mainframe                                                  cc 
             Discussion List                                               
                              Re: z/OS 1.13 preview               
                                                                           
                                                                           
             02/15/2011 11:09                                              
             AM                                                            
                                                                           
                                                                           
             Please respond to                                             
               IBM Mainframe                                               
              Discussion List                                              
                                                            
                                                                           
                                                                           




I think VM is cool too.  I don't really have an opinion about VSE.
 Although, it has been my experience that each of the Operating Systems out
there have their "cool points".  I just am really excited about the 1.13
things... and I am not finished reading the whole thing.

Rob

On Tue, Feb 15, 2011 at 11:02 AM, August Carideo
wrote:

> I like VM/VSE better
> Ok now don't beat me up here
> LOL
>
>
>
>
>             Rob Schramm
>                      L.COM>                                                     To
>             Sent by: IBM              IBM-MAIN@bama.ua.edu
>             Mainframe                                                  cc
>             Discussion List
>                      .edu>                     Re: z/OS 1.13 preview
>
>
>             02/15/2011 10:59
>             AM
>
>
>             Please respond to
>               IBM Mainframe
>              Discussion List
>                            .edu>
>
>
>
>
>
>
> Does anyone else think that working with z/OS is completely the coolest
> thing since the invention of "sliced bread"?
>
> I am reading thru the 1.13 announcement and there is alot of really cool
> stuff. It is hard to just select a few things to talk about.
>
> Rob Schramm
>
> On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
> wrote:
>
> > Today the IBM announcements newsletter included the
> > preview for z/OS 1.13.
> >
> > One point that caught my eye immediately:
> >
> >  * Support is planned for in-stream data sets
> >    to be used within JCL procedures and for
> >    include statements.
> >
> > Well! That's been a long time coming. But I'm sure
> > more than a few on this list will appreciate it.
> > (Note: announced for JES2 only)
> >
> >
> > Another interesting change:
> >
> >  * Support is planned for job return codes.
> >    This support will be designed to allow you
> >    to specify that the job return code be set
> >    to the highest return code encountered by
> >    any step, the last step, or a specified
> >    step in the job. This will help make it
> >    simpler to interpret the results of job
> >    execution.
> >
> >
> > For ISPF:
> >
> >  * Line command level Edit macros
> >
> >
> > There are _tons_ of other enhancements li

Re: handling of errors

2011-02-15 Thread Steve Comstock

On 2/15/2011 5:53 PM, Frank Swarbrick wrote:

The following detail in the z/OS 1.13 announcement made me curious:
"Language Environment is planned to support recovery from additional abends during 
output and close operations for C/C++ programs, and to return to C/C++ programs 
indicating that an I/O error has occurred rather than issuing an abend. This is intended 
to provide a more predictable recovery environment for C/C++ programs when I/O errors are 
encountered."

I don't know any specifics on what is being referred to here, nor do I have XL C/C++ to 
test anything.  But it makes me wonder about others general philosophy on handling what 
I'll call "unexpected conditions".

In my 15 years of application programming I've always hated the need to check 
'status result' fields for conditions that, well, should not occur.  Most (not 
all, of course!) of the time its going to be the case that the application is 
simply going to have some code to check for expected status conditions, and if 
the status is not expected print out an error message and exit (hopefully with 
a 'non-successful' exit code of some sort) or force an abend.  So why not just 
allow the invoked routine to abend itself?

I am actually working on some small subroutines to check for error conditions resulting from DL/I calls, DB2 calls, and COBOL 
file I/O.  The routine will allow for one "expected unsuccessful" result (such as "no more data", 
"record not found", etc.), and in any other case it will use the LE CEESGL routine to signal an error with a useful 
error message.  For batch I will then have a global USRHDLR that will query the operator as to what they want to do, with options 
such as "create a CEEDUMP", "percolate" the condition (in the end abending with U4038), continue processing 
(if the condition is I, W or E, but not S or C), etc.  In CICS the handler will not give the user an option to do anything but 
percolate, but it will display the formatted reason to the screen (assuming invoked from a terminal, of course!).

By doing all of this it seems to me the applications will need a lot less checking for errors from which the 
application cannot recover anyway.   Like logic errors that should happen only when testing (trying to read 
from a file that is not open, or whatever).  These are cases where obviously if you "expected" it 
it would not occur, because you will have the appropriate logic in place.  I'm also going to change called 
subroutines to signal error conditions.  Why should an application have to check to make sure that it called 
the routine with the proper data.  The caller should always call a routine with valid data.  If not it's 
pretty much a "logic error".  Should not the subroutine signal an error, thus not requiring the 
caller to check for situations which "should never occur", and if they do occur must be fixed by 
fixing the code so that it is not calling with bad data?

It looks like LE, to some degree, follows this same line of thought.  In fact, when calling an LE 
routine you have the option of checking the result inline (by providing a "feedback code" 
area) or just having the routine signal the error and, generally, aborting the program (assuming 
it's not handled).  Unless you're actually using the routine to not only act on your data as a data 
validator as well (which is reasonable in some cases), what point is there of having the routine 
return back to your code when all your code is going to do is say "unexpected error in call to 
xxx" and terminate/abend.

CICS conditions are the same.  NOHANDLE is both good and bad.  It's good because HANDLE 
CONDITION is not locally scoped to a single EXEC CICS command, while NOHANDLE is.  But 
it's bad in that you have to have a not of error checking for those unexpected 
conditions.  Wouldn't it be better to, on an EXEC CICS tell CICS what conditions you'd 
like to handle programatically and have CICS do the proper abend for all other cases?  
Then if it turns out there is a case you should be handling but were not aware of at 
design time you can add it and handle it appropriately.  I've actually submitted this 
very requirement to IBM as a result of their recent CICS "what do you want?" 
survey.

In the end I know a lot of people will disagree with this philosophy right off. 
 But I ask you, especially those who write application code, would this not 
make life simpler?  And in most cases no less robust.

Frank



Frank,

I have to tell you: one of the first times I taught my
course, now called "Using LE Services in z/OS" was at
the IBM Santa Teresa lab (now Silicon Valley); the audience
was LE level 2 and 3 support, with some of the developers
dropping in; very scary to teach to that audience.

The thing I picked up from the developers was that
one of the central philosopies was: "Code for success".

Their thinking was what you suggested: _don't_ check for
errors after invoking an LE service; if the service
detects an error, it will signal a co

Re: SEARCH CLASS(USER)

2011-02-15 Thread Scott Ford

BTW is another way and I have it working
 
Scott J Ford
 





From: Walt Farrell 
To: IBM-MAIN@bama.ua.edu
Sent: Tue, February 15, 2011 12:35:37 PM
Subject: Re: SEARCH CLASS(USER)

On Mon, 14 Feb 2011 19:22:40 -0800, Scott Ford  wrote:

>After reading the TSO/E manuals on IKJEFTSR I am confused on whether or not I 
>can call

>'SEARCH CLASS(USER)'  from a Cobol or Assembler program. Can someone enlighten 
>me ?
>
>I see a RC=20, RSN=60 coming back from the call, do I assume I cant call 
>RACF(SEARCH CLASS(USER) or did I miss something in my
>understanding of how IKJEFTSR works. I did establish an environment first 
>IKJTSOEV ...no problem rc=0, rsn=0 ..

IKJEFTSR can not run APF-authorized commands in environments established by
IKJTSOEV. SEARCH is an APF-authorized command.

If you want to run SEARCH from a COBOL or asssembler program then either:
(a) you would need to run that program in a TSO session established by
IKJEFT01 instead; or
(b) you would need to run the COBOL or assembler program APF-authorized,
establish the environment using IKJTSOEV, and then ATTACH the SEARCh command
yourself, not using IKJEFTSR.

However, a better approach would be to avoid using SEARCH from a program.
Its output is not an intended programming interface. Instead, I would use
the R_admin callable service and use the function that lets you extract user
profile information. You'll find that documented in RACF Callable Services.

-- 
Walt Farrell
IBM STSM, z/OS Security Design

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


Re: SEARCH CLASS(USER)

2011-02-15 Thread Scott Ford
All ready solved...had nothing to do with RACF, had to do with TSO 
authorization 
of commands ...fixed and working
 
Scott J Ford
 





From: Rick Fochtman 
To: IBM-MAIN@bama.ua.edu
Sent: Tue, February 15, 2011 3:16:24 PM
Subject: Re: SEARCH CLASS(USER)

You should check to see if you have the appropriate RACF permissions.

Rick

Sam Siegel wrote:

>Scott,
>You might need to clear bytes 1 and 2 of of parm 1.
>
>http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.ikjb700/newtsf.htm
>
>
>http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.ikjb700/newtsf.htm
>
>
>Cheers,
>Sam
>
>On Mon, Feb 14, 2011 at 7:22 PM, Scott Ford  wrote:
>
>  
>
>>After reading the TSO/E manuals on IKJEFTSR I am confused on whether or not
>>I
>>can call
>>
>>'SEARCH CLASS(USER)'  from a Cobol or Assembler program. Can someone
>>enlighten
>>me ?
>>I see a RC=20, RSN=60 coming back from the call, do I assume I cant call
>>RACF(SEARCH CLASS(USER) or did I miss something in my
>>understanding of how IKJEFTSR works. I did establish an environment first
>>IKJTSOEV ...no problem rc=0, rsn=0 ..
>>
>>
>>Scott J Ford
>>
>>
>>
>>
>>--
>>For IBM-MAIN subscribe / signoff / archive access instructions,
>>send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu 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 lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: handling of errors

2011-02-15 Thread Gerhard Postpischil

On 2/15/2011 7:53 PM, Frank Swarbrick wrote:

In the end I know a lot of people will disagree with this
philosophy right off.  But I ask you, especially those who
write application code, would this not make life simpler?
And in most cases no less robust.


I've worked for a number of ISVs, and my preference, subject to 
time, space, and yelling managers, was to handle special 
conditions by providing enough information so that either the 
customer, or a level 1 representative, could understand the 
problem, and perhaps even solve it without escalation.


When writing code for my own use, I sometimes cut corners, and 
occasionally regret it.


Gerhard Postpischil
Bradford, VT

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


Re: Adding Lines to End of Member

2011-02-15 Thread Cris Hernandez #9
Slow?  compared to what?  If my mainframe was ever "slow", I'd be complaining 
about performance issues.  No cpu cycles?  Swapped out?  I do the bulk of my 
largest REXX process during off peak hours, and processing 1 million 4096 VB 
records usually takes 2-3 minutes.  I do not consider that slow (about 10,000 
records every couple seconds).  Peak hours, maybe 10-12 minutes as my stuff 
isn't production and gets a lower priority.  

I find it helps helps to zero out each record after its processed if using stem 
variables, and not using stemvars for large files, instead read/write one 
record at a time.  Less region, less paging, less time swapped out.  

If you're only doing 1 member, the JCL IEBGENER option would appear viable, but 
if you're only doing 1 member, heck, just edit it.  

Oh, I left out one very important to in the psycho code, do a DROP stemvar 
after each write, otherwise, each member ends up having the same number of 
records as its longest predecessor.  and if it needs to be said, don't 
overwrite the input file... 

--- On Tue, 2/15/11, Veilleux, Jon L  wrote:

> From: Veilleux, Jon L 
> Subject: Re: Adding Lines to End of Member
> To: IBM-MAIN@bama.ua.edu
> Date: Tuesday, February 15, 2011, 7:31 AM
> The only issue I have with REXX
> (which I love using) is that I/O tends to be fairly slow,
> otherwise I would agree that it is the best solution.
> 
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu]
> On Behalf Of Cris Hernandez #9
> Sent: Monday, February 14, 2011 4:06 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: Adding Lines to End of Member
> 
> I vote for the REXX option. 
> 
> Use LISTD after an OUTTRAP to capture  a list of
> members, DO loop thru the list, allocate the dsn/member,
> readin, add the 2 lines to the end by adding to a counter
> and setting the needed value to the stemvar, and then write
> back out.  
> 
> 
> 
> 
> 
> 
> 
> 
> 
> --- On Mon, 2/14/11, Adam Johanson 
> wrote:
> 
> > From: Adam Johanson 
> > Subject: Adding Lines to End of Member
> > To: IBM-MAIN@bama.ua.edu
> > Date: Monday, February 14, 2011, 12:03 PM I've got to
> change about 
> > 1,000 members of a PDS containing JCL by adding
> > 2 lines to the end of each member.
> > 
> >    I thought there might be a way to do this with
> IEBUPDTE, but he 
> > requires sequence numbers, which a lot of the members
> don't have.
> > And it also looks
> > like you can't just tell him something like, "sequence
> number = last".
> > 
> >    Is there any way to do this with another
> utility? I'd like to do 
> > this with standard MVS utilities, but if it winds up
> that we need to 
> > use a REXX program to do it, then we can go that
> route.
> > 
> >    Thanks.
> > 
> >
> --
> > For IBM-MAIN subscribe / signoff / archive access
> instructions, send 
> > email to lists...@bama.ua.edu
> 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 lists...@bama.ua.edu
> with the message: GET IBM-MAIN INFO Search the archives at
> http://bama.ua.edu/archives/ibm-main.html
> This e-mail may contain confidential or privileged
> information. If
> you think you have received this e-mail in error, please
> advise the
> sender by reply e-mail and then delete this e-mail
> immediately.
> Thank you. Aetna   
> 
> --
> For IBM-MAIN subscribe / signoff / archive access
> instructions,
> send email to lists...@bama.ua.edu
> 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


handling of errors

2011-02-15 Thread Frank Swarbrick
The following detail in the z/OS 1.13 announcement made me curious:
"Language Environment is planned to support recovery from additional abends 
during output and close operations for C/C++ programs, and to return to C/C++ 
programs indicating that an I/O error has occurred rather than issuing an 
abend. This is intended to provide a more predictable recovery environment for 
C/C++ programs when I/O errors are encountered."

I don't know any specifics on what is being referred to here, nor do I have XL 
C/C++ to test anything.  But it makes me wonder about others general philosophy 
on handling what I'll call "unexpected conditions".

In my 15 years of application programming I've always hated the need to check 
'status result' fields for conditions that, well, should not occur.  Most (not 
all, of course!) of the time its going to be the case that the application is 
simply going to have some code to check for expected status conditions, and if 
the status is not expected print out an error message and exit (hopefully with 
a 'non-successful' exit code of some sort) or force an abend.  So why not just 
allow the invoked routine to abend itself?

I am actually working on some small subroutines to check for error conditions 
resulting from DL/I calls, DB2 calls, and COBOL file I/O.  The routine will 
allow for one "expected unsuccessful" result (such as "no more data", "record 
not found", etc.), and in any other case it will use the LE CEESGL routine to 
signal an error with a useful error message.  For batch I will then have a 
global USRHDLR that will query the operator as to what they want to do, with 
options such as "create a CEEDUMP", "percolate" the condition (in the end 
abending with U4038), continue processing (if the condition is I, W or E, but 
not S or C), etc.  In CICS the handler will not give the user an option to do 
anything but percolate, but it will display the formatted reason to the screen 
(assuming invoked from a terminal, of course!).

By doing all of this it seems to me the applications will need a lot less 
checking for errors from which the application cannot recover anyway.   Like 
logic errors that should happen only when testing (trying to read from a file 
that is not open, or whatever).  These are cases where obviously if you 
"expected" it it would not occur, because you will have the appropriate logic 
in place.  I'm also going to change called subroutines to signal error 
conditions.  Why should an application have to check to make sure that it 
called the routine with the proper data.  The caller should always call a 
routine with valid data.  If not it's pretty much a "logic error".  Should not 
the subroutine signal an error, thus not requiring the caller to check for 
situations which "should never occur", and if they do occur must be fixed by 
fixing the code so that it is not calling with bad data?

It looks like LE, to some degree, follows this same line of thought.  In fact, 
when calling an LE routine you have the option of checking the result inline 
(by providing a "feedback code" area) or just having the routine signal the 
error and, generally, aborting the program (assuming it's not handled).  Unless 
you're actually using the routine to not only act on your data as a data 
validator as well (which is reasonable in some cases), what point is there of 
having the routine return back to your code when all your code is going to do 
is say "unexpected error in call to xxx" and terminate/abend.

CICS conditions are the same.  NOHANDLE is both good and bad.  It's good 
because HANDLE CONDITION is not locally scoped to a single EXEC CICS command, 
while NOHANDLE is.  But it's bad in that you have to have a not of error 
checking for those unexpected conditions.  Wouldn't it be better to, on an EXEC 
CICS tell CICS what conditions you'd like to handle programatically and have 
CICS do the proper abend for all other cases?  Then if it turns out there is a 
case you should be handling but were not aware of at design time you can add it 
and handle it appropriately.  I've actually submitted this very requirement to 
IBM as a result of their recent CICS "what do you want?" survey.

In the end I know a lot of people will disagree with this philosophy right off. 
 But I ask you, especially those who write application code, would this not 
make life simpler?  And in most cases no less robust.

Frank

-- 

Frank Swarbrick
Applications Architect - Mainframe Applications Development
FirstBank Data Corporation - Lakewood, CO  USA
P: 303-235-1403


>>> 

The information contained in this electronic communication and any document 
attached hereto or transmitted herewith is confidential and intended for the 
exclusive use of the individual or entity named above.  If the reader of this 
message is not the intended recipient or the employee or agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
examination, use, dissemination, distribu

Re: z/OS 1.13 preview

2011-02-15 Thread Eric Chevalier
On 15 Feb 2011 10:25:48 -0800,
rob.schr...@gmail.com (Rob Schramm) wrote:

>Is anyone using BIND DNS to provide DNS resolution?

Yes! We've been running BIND on our zOS system for quite a while and
it's been working well. It was our primary internal name server, but
we recently migrated that primary to BIND running on Debian/390 under
VM. BIND on zOS is still running, but now as a secondary name server.
(We also run BIND on an AIX system in a remote office as another
secondary name server.)

Eric

--
Eric Chevalier  E-mail: et...@tulsagrammer.com
   Web: www.tulsagrammer.com
Is that call really worth your child's life?  HANG UP AND DRIVE!

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


Re: SEARCH CLASS(USER)

2011-02-15 Thread Rick Fochtman

You should check to see if you have the appropriate RACF permissions.

Rick

Sam Siegel wrote:


Scott,
You might need to clear bytes 1 and 2 of of parm 1.

http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.ikjb700/newtsf.htm

http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp?topic=/com.ibm.zos.r9.ikjb700/newtsf.htm

Cheers,
Sam

On Mon, Feb 14, 2011 at 7:22 PM, Scott Ford  wrote:

 


After reading the TSO/E manuals on IKJEFTSR I am confused on whether or not
I
can call

'SEARCH CLASS(USER)'  from a Cobol or Assembler program. Can someone
enlighten
me ?
I see a RC=20, RSN=60 coming back from the call, do I assume I cant call
RACF(SEARCH CLASS(USER) or did I miss something in my
understanding of how IKJEFTSR works. I did establish an environment first
IKJTSOEV ...no problem rc=0, rsn=0 ..


Scott J Ford




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


Re: z/OS 1.13 preview

2011-02-15 Thread Gibney, Dave
Went to RESOLVER with 1.9. Actually, I seem to remember first starting
RESOLVER at 1.7 but it has become blurred in my mind. Minor updates to
configuration files with 1.11

Dave Gibney
Information Technology Services
Washington State University


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
> Behalf Of Edward Jaffe
> Sent: Tuesday, February 15, 2011 10:40 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
> 
> On 2/15/2011 10:24 AM, Rob Schramm wrote:
> > Is anyone using BIND DNS to provide DNS resolution?
> 
> We moved ours to Linux for z because of IBM's SOD articulated in
today's
> announcement.
> 
> --
> Edward E Jaffe
> Phoenix Software International, Inc
> 831 Parkview Drive North
> El Segundo, CA 90245
> 310-338-0400 x318
> edja...@phoenixsoftware.com
> http://www.phoenixsoftware.com/
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send
email to
> lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: z/OS 1.13 preview

2011-02-15 Thread Edward Jaffe

On 2/15/2011 10:22 AM, Ward, Mike S wrote:

John, I'm not trying to be funny, but have you tried obrowse or oedit.


Those work only in a very limited subset of interactive z/OS UNIX environments.

--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: z/OS 1.13 preview

2011-02-15 Thread Edward Jaffe

On 2/15/2011 10:24 AM, Rob Schramm wrote:

Is anyone using BIND DNS to provide DNS resolution?


We moved ours to Linux for z because of IBM's SOD articulated in today's 
announcement.


--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: What is wrong with this IPCS REXX command?

2011-02-15 Thread Binyamin Dissen
Still RC=12

On Tue, 15 Feb 2011 13:11:07 -0500 "Hardee, Charles H" 
wrote:

:>Try this:  "EVALMAP EQ 1900093C. SELECT(STRUCTURE) REXX(ADDRESS(XADDR))"
:>
:>Chuck
:>
:>Charles Hardee
:>CA technologies
:>Sr Sustaining Engineer
:>Tel:  +1-952-838-1039
:>charles.har...@ca.com
:>
:>
:>
:>-Original Message-
:>From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf 
Of Binyamin Dissen
:>Sent: Tuesday, February 15, 2011 11:22 AM
:>To: IBM-MAIN@bama.ua.edu
:>Subject: What is wrong with this IPCS REXX command?
:>
:>"EVALMAP EQ 1900093C. STRUCTURE REXX(ADDRESS(XADDR))"
:>
:>Is getting RC=12

--
Binyamin Dissen 
http://www.dissensoftware.com

Director, Dissen Software, Bar & Grill - Israel


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

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

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


Re: z/OS 1.13 preview

2011-02-15 Thread McKown, John
> -Original Message-
> From: IBM Mainframe Discussion List 
> [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Ward, Mike S
> Sent: Tuesday, February 15, 2011 12:22 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
> 
> John, I'm not trying to be funny, but have you tried obrowse or oedit.
> Or maybe the environment that you connect with doesn't support it?

I don't use TSO OMVS much. OEDIT / OBROWSE are only available there. I prefer 
what I consider a "true" UNIX shell gotten via line mode telnet (not TN3270) 
or, even better, ssh. I cannot really say __why__ I prefer telnet to TSO OMVS, 
I just do.

I would abandon TSO in a heartbeat if I could. I guess I just don't like its 
inherent "single tasking" mode of operation. Yes, I know ISPF gives multiple 
screens. But I can't do a large edit macro in one screen and then switch away 
to another ISPF screen while that one is running. I can do that easily with a 
telnet UNIX shell. Well, I do need two separate shells, which is easy using 
telnet/ssh. But I can't have two separate TSO sessions going using the same ID 
on the same system. It is just not designed to do that.

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 

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


Re: z/OS 1.13 preview

2011-02-15 Thread Rob Schramm
I was curious about plans to replace the functionality.

Statement of Direction
"z/OS V1.13 is planned to be the last release in which the BIND 9.2.0
function will be available. Customers who currently use or plan to use the
z/OS BIND 9.2.0 function as a caching-only name server should use the
resolver function, which became generally available in z/OS V1.11, to cache
Domain Name Server (DNS) responses. Customers who currently use or plan to
use the z/OS BIND 9.2.0 function as a primary or secondary authoritative
name server should investigate using BIND on Linux for System z or BIND on
an IBM blade in an IBM zEnterprise BladeCenter® Extension (zBX)."


On Tue, Feb 15, 2011 at 1:26 PM, Ward, Mike S  wrote:

> Yes
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
> Behalf Of Rob Schramm
> Sent: Tuesday, February 15, 2011 12:25 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
>
> Is anyone using BIND DNS to provide DNS resolution?
>
> On Tue, Feb 15, 2011 at 1:22 PM, Ward, Mike S  wrote:
>
> > John, I'm not trying to be funny, but have you tried obrowse or oedit.
> > Or maybe the environment that you connect with doesn't support it?
> >
> > -Original Message-
> > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
> > Behalf Of McKown, John
> > Sent: Tuesday, February 15, 2011 11:10 AM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: z/OS 1.13 preview
> >
> > > -Original Message-
> > > From: IBM Mainframe Discussion List
> > > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > > Sent: Tuesday, February 15, 2011 10:20 AM
> > > To: IBM-MAIN@bama.ua.edu
> > > Subject: Re: z/OS 1.13 preview
> > >
> > > John,
> > >
> > > Not that I am a firm advocate of vi ... (I used to complain
> > > endlessly about
> > > it when I was working on AIX and grew to more of a grudging
> acceptance
> > > because it was one of the few things I could count on when
> > > moving in between
> > > the various UNIX flavors) but it is nice to know the basics.  I am
> > > encouraged that even vi made the list for 1.13.  I have to agree
> that
> > > additional movement in Unix System Services shell would be a
> > > good thing.
> > >  Although, I think I see the writing clearly when it comes to
> > > zOSMF.  I
> > > think that zOSMF will become the defacto delivery for all new
> > > interactions
> > > with z/OS.  It is just way too much of a no-brainer.  Not
> > > that I see them
> > > dropping TSO/ISPF because having a fairly simple way to
> > > interact with z/OS
> > > is always going to be a requirement.
> > >
> > > Rob
> >
> > I'd prefer that they replace their "vi" clone with the FOSS "vim". All
> > that I see in the announcement about "vi" is enhanced support of
> ASCII,
> > not functionality.
> >
> > --
> > John McKown
> > Systems Engineer IV
> > IT
> >
> > Administrative Services Group
> >
> > HealthMarkets(r)
> >
> > 9151 Boulevard 26 * N. Richland Hills * TX 76010
> > (817) 255-3225 phone *
> > john.mck...@healthmarkets.com * www.HealthMarkets.com
> >
> > Confidentiality Notice: This e-mail message may contain confidential
> or
> > proprietary information. If you are not the intended recipient, please
> > contact the sender by reply e-mail and destroy all copies of the
> > original message. HealthMarkets(r) is the brand name for products
> > underwritten and issued by the insurance subsidiaries of
> HealthMarkets,
> > Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life
> > Insurance Company of TennesseeSM and The MEGA Life and Health
> Insurance
> > Company.SM
> >
> >
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> > Search the archives at http://bama.ua.edu/archives/ibm-main.html
> >
> > ==
> > This email and any files transmitted with it are confidential and
> intended
> > solely for the use of the individual or entity
> > to which they are addressed. If you have received this email in error
> > please notify the system manager. This message
> > contains confidential information and is intended only for the
> individual
> > named. If you are not the named addressee you
> > should not disseminate, distribute or copy this e-mail. Please notify
> the
> > sender immediately by e-mail if you
> > have received this e-mail by mistake and delete this e-mail from your
> > system. If you are not the intended recipient
> > you are notified that disclosing, copying, distributing or taking any
> > action in reliance on the contents of this
> > information is strictly prohibited.
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> > Search the archives at http

Re: z/OS 1.13 preview

2011-02-15 Thread Ward, Mike S
Yes

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Rob Schramm
Sent: Tuesday, February 15, 2011 12:25 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: z/OS 1.13 preview

Is anyone using BIND DNS to provide DNS resolution?

On Tue, Feb 15, 2011 at 1:22 PM, Ward, Mike S  wrote:

> John, I'm not trying to be funny, but have you tried obrowse or oedit.
> Or maybe the environment that you connect with doesn't support it?
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
> Behalf Of McKown, John
> Sent: Tuesday, February 15, 2011 11:10 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
>
> > -Original Message-
> > From: IBM Mainframe Discussion List
> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > Sent: Tuesday, February 15, 2011 10:20 AM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: z/OS 1.13 preview
> >
> > John,
> >
> > Not that I am a firm advocate of vi ... (I used to complain
> > endlessly about
> > it when I was working on AIX and grew to more of a grudging
acceptance
> > because it was one of the few things I could count on when
> > moving in between
> > the various UNIX flavors) but it is nice to know the basics.  I am
> > encouraged that even vi made the list for 1.13.  I have to agree
that
> > additional movement in Unix System Services shell would be a
> > good thing.
> >  Although, I think I see the writing clearly when it comes to
> > zOSMF.  I
> > think that zOSMF will become the defacto delivery for all new
> > interactions
> > with z/OS.  It is just way too much of a no-brainer.  Not
> > that I see them
> > dropping TSO/ISPF because having a fairly simple way to
> > interact with z/OS
> > is always going to be a requirement.
> >
> > Rob
>
> I'd prefer that they replace their "vi" clone with the FOSS "vim". All
> that I see in the announcement about "vi" is enhanced support of
ASCII,
> not functionality.
>
> --
> John McKown
> Systems Engineer IV
> IT
>
> Administrative Services Group
>
> HealthMarkets(r)
>
> 9151 Boulevard 26 * N. Richland Hills * TX 76010
> (817) 255-3225 phone *
> john.mck...@healthmarkets.com * www.HealthMarkets.com
>
> Confidentiality Notice: This e-mail message may contain confidential
or
> proprietary information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the
> original message. HealthMarkets(r) is the brand name for products
> underwritten and issued by the insurance subsidiaries of
HealthMarkets,
> Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life
> Insurance Company of TennesseeSM and The MEGA Life and Health
Insurance
> Company.SM
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>
> ==
> This email and any files transmitted with it are confidential and
intended
> solely for the use of the individual or entity
> to which they are addressed. If you have received this email in error
> please notify the system manager. This message
> contains confidential information and is intended only for the
individual
> named. If you are not the named addressee you
> should not disseminate, distribute or copy this e-mail. Please notify
the
> sender immediately by e-mail if you
> have received this e-mail by mistake and delete this e-mail from your
> system. If you are not the intended recipient
> you are notified that disclosing, copying, distributing or taking any
> action in reliance on the contents of this
> information is strictly prohibited.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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

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

Re: z/OS 1.13 preview

2011-02-15 Thread Rob Schramm
Is anyone using BIND DNS to provide DNS resolution?

On Tue, Feb 15, 2011 at 1:22 PM, Ward, Mike S  wrote:

> John, I'm not trying to be funny, but have you tried obrowse or oedit.
> Or maybe the environment that you connect with doesn't support it?
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
> Behalf Of McKown, John
> Sent: Tuesday, February 15, 2011 11:10 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
>
> > -Original Message-
> > From: IBM Mainframe Discussion List
> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > Sent: Tuesday, February 15, 2011 10:20 AM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: z/OS 1.13 preview
> >
> > John,
> >
> > Not that I am a firm advocate of vi ... (I used to complain
> > endlessly about
> > it when I was working on AIX and grew to more of a grudging acceptance
> > because it was one of the few things I could count on when
> > moving in between
> > the various UNIX flavors) but it is nice to know the basics.  I am
> > encouraged that even vi made the list for 1.13.  I have to agree that
> > additional movement in Unix System Services shell would be a
> > good thing.
> >  Although, I think I see the writing clearly when it comes to
> > zOSMF.  I
> > think that zOSMF will become the defacto delivery for all new
> > interactions
> > with z/OS.  It is just way too much of a no-brainer.  Not
> > that I see them
> > dropping TSO/ISPF because having a fairly simple way to
> > interact with z/OS
> > is always going to be a requirement.
> >
> > Rob
>
> I'd prefer that they replace their "vi" clone with the FOSS "vim". All
> that I see in the announcement about "vi" is enhanced support of ASCII,
> not functionality.
>
> --
> John McKown
> Systems Engineer IV
> IT
>
> Administrative Services Group
>
> HealthMarkets(r)
>
> 9151 Boulevard 26 * N. Richland Hills * TX 76010
> (817) 255-3225 phone *
> john.mck...@healthmarkets.com * www.HealthMarkets.com
>
> Confidentiality Notice: This e-mail message may contain confidential or
> proprietary information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the
> original message. HealthMarkets(r) is the brand name for products
> underwritten and issued by the insurance subsidiaries of HealthMarkets,
> Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life
> Insurance Company of TennesseeSM and The MEGA Life and Health Insurance
> Company.SM
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>
> ==
> This email and any files transmitted with it are confidential and intended
> solely for the use of the individual or entity
> to which they are addressed. If you have received this email in error
> please notify the system manager. This message
> contains confidential information and is intended only for the individual
> named. If you are not the named addressee you
> should not disseminate, distribute or copy this e-mail. Please notify the
> sender immediately by e-mail if you
> have received this e-mail by mistake and delete this e-mail from your
> system. If you are not the intended recipient
> you are notified that disclosing, copying, distributing or taking any
> action in reliance on the contents of this
> information is strictly prohibited.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: z/OS 1.13 preview

2011-02-15 Thread Ward, Mike S
John, I'm not trying to be funny, but have you tried obrowse or oedit.
Or maybe the environment that you connect with doesn't support it?

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of McKown, John
Sent: Tuesday, February 15, 2011 11:10 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: z/OS 1.13 preview

> -Original Message-
> From: IBM Mainframe Discussion List 
> [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> Sent: Tuesday, February 15, 2011 10:20 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
> 
> John,
> 
> Not that I am a firm advocate of vi ... (I used to complain 
> endlessly about
> it when I was working on AIX and grew to more of a grudging acceptance
> because it was one of the few things I could count on when 
> moving in between
> the various UNIX flavors) but it is nice to know the basics.  I am
> encouraged that even vi made the list for 1.13.  I have to agree that
> additional movement in Unix System Services shell would be a 
> good thing.
>  Although, I think I see the writing clearly when it comes to 
> zOSMF.  I
> think that zOSMF will become the defacto delivery for all new 
> interactions
> with z/OS.  It is just way too much of a no-brainer.  Not 
> that I see them
> dropping TSO/ISPF because having a fairly simple way to 
> interact with z/OS
> is always going to be a requirement.
> 
> Rob

I'd prefer that they replace their "vi" clone with the FOSS "vim". All
that I see in the announcement about "vi" is enhanced support of ASCII,
not functionality.

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or
proprietary information. If you are not the intended recipient, please
contact the sender by reply e-mail and destroy all copies of the
original message. HealthMarkets(r) is the brand name for products
underwritten and issued by the insurance subsidiaries of HealthMarkets,
Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life
Insurance Company of TennesseeSM and The MEGA Life and Health Insurance
Company.SM

 

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

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

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


Re: What is wrong with this IPCS REXX command?

2011-02-15 Thread Hardee, Charles H
Try this:  "EVALMAP EQ 1900093C. SELECT(STRUCTURE) REXX(ADDRESS(XADDR))"

Chuck

Charles Hardee
CA technologies
Sr Sustaining Engineer
Tel:  +1-952-838-1039
charles.har...@ca.com



-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Binyamin Dissen
Sent: Tuesday, February 15, 2011 11:22 AM
To: IBM-MAIN@bama.ua.edu
Subject: What is wrong with this IPCS REXX command?

"EVALMAP EQ 1900093C. STRUCTURE REXX(ADDRESS(XADDR))"

Is getting RC=12

--
Binyamin Dissen 
http://www.dissensoftware.com

Director, Dissen Software, Bar & Grill - Israel


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

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

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


corrected links for hlasm.com announcement

2011-02-15 Thread Abe F. Kornelis

All,

my apologies - there's a typo in the links. Please try
http://www.hlasm.com/english/oplist.htm for English or
http://www.hlasm.com/hollands/oplist.htm for Dutch.

Sorry for the inconvenience,
Abe Kornelis.
=

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


Re: SEARCH CLASS(USER)

2011-02-15 Thread Walt Farrell
On Mon, 14 Feb 2011 19:22:40 -0800, Scott Ford  wrote:

>After reading the TSO/E manuals on IKJEFTSR I am confused on whether or not I 
>can call

>'SEARCH CLASS(USER)'  from a Cobol or Assembler program. Can someone enlighten 
>me ?
>
>I see a RC=20, RSN=60 coming back from the call, do I assume I cant call 
>RACF(SEARCH CLASS(USER) or did I miss something in my
>understanding of how IKJEFTSR works. I did establish an environment first 
>IKJTSOEV ...no problem rc=0, rsn=0 ..

IKJEFTSR can not run APF-authorized commands in environments established by
IKJTSOEV. SEARCH is an APF-authorized command.

If you want to run SEARCH from a COBOL or asssembler program then either:
(a) you would need to run that program in a TSO session established by
IKJEFT01 instead; or
(b) you would need to run the COBOL or assembler program APF-authorized,
establish the environment using IKJTSOEV, and then ATTACH the SEARCh command
yourself, not using IKJEFTSR.

However, a better approach would be to avoid using SEARCH from a program.
Its output is not an intended programming interface. Instead, I would use
the R_admin callable service and use the function that lets you extract user
profile information. You'll find that documented in RACF Callable Services.

-- 
Walt Farrell
IBM STSM, z/OS Security Design

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


Great offerings from EWCP at SHARE in Anaheim

2011-02-15 Thread Norman Hollander on DesertWiz
And if I could follow on Ed's coat tails...

EWCP will be offering sessions on z196-z/OS performance, SMF 113 records,
the basics of
Capacity Planning, the basics of LSPR (and a hands-on lab), Managing and
Monitoring USS,
Optimizing your Batch Window, IBM Smart Analytics Optimizer,  and  much
more.

It's not too late to join us in Anaheim.  Don't miss out on the best
education under one roof...

znor...@us.ibm.com

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf
Of Edward Jaffe
Sent: Tuesday, February 15, 2011 Tuesday 7:24 AM
To: IBM-MAIN@bama.ua.edu
Subject: z/OS 1.13 preview at SHARE in Anaheim

On 2/15/2011 7:07 AM, Steve Comstock wrote:
> Today the IBM announcements newsletter included the preview for z/OS 
> 1.13.

Previewed z/OS 1.13 features will be presented in detail at SHARE in Anaheim
at the end of this month. If you or your "bean counters" were on the
"fence," this announcement alone should provide reason enough to attend.

--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


hlasm.com announcement

2011-02-15 Thread Abe F. Kornelis

All,

For those of you who might be interested I have another
announcement - the last one was only a month ago.

As the site generator is maturing, I am now finally able to
generate lists of instructions and format them as html
pages. So I have added 137 pages with lists of instructions,
ordered by opcode, mnemonic, or name. Without an
automated generator this would have been impossible!

It took alittle tweaking, but I have finally managed to
sorting by name in a case insensitive manner, with numerals
sorting higher than alphabetic characters, and irrespective of
the assembling platform or source encoding scheme.

For results, please check:
http://www/hlasm.com/english/oplist.htm for the English version or
http://www.hlasm.com/hollands/oplist/htm for the Dutch version.

If you find any error, please do not hesitate to inform me.

Kind regards,
Abe Kornelis
Contractor & Consultant
for Assembler & DB2.
Currently available for
adding value to your company
=

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


What is wrong with this IPCS REXX command?

2011-02-15 Thread Binyamin Dissen
"EVALMAP EQ 1900093C. STRUCTURE REXX(ADDRESS(XADDR))"

Is getting RC=12

--
Binyamin Dissen 
http://www.dissensoftware.com

Director, Dissen Software, Bar & Grill - Israel


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

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

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


Re: A better abbreviation (Was: HFS file questions)

2011-02-15 Thread Kirk Talman
roflmao

thnx I needed a laugh

IBM Mainframe Discussion List  wrote on 02/14/2011 
09:01:06 PM:

> From: Ron Hawkins 

> Well, I think the whole subject zUX.


-
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. 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: z/OS 1.13 preview

2011-02-15 Thread McKown, John
> -Original Message-
> From: IBM Mainframe Discussion List 
> [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> Sent: Tuesday, February 15, 2011 10:20 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
> 
> John,
> 
> Not that I am a firm advocate of vi ... (I used to complain 
> endlessly about
> it when I was working on AIX and grew to more of a grudging acceptance
> because it was one of the few things I could count on when 
> moving in between
> the various UNIX flavors) but it is nice to know the basics.  I am
> encouraged that even vi made the list for 1.13.  I have to agree that
> additional movement in Unix System Services shell would be a 
> good thing.
>  Although, I think I see the writing clearly when it comes to 
> zOSMF.  I
> think that zOSMF will become the defacto delivery for all new 
> interactions
> with z/OS.  It is just way too much of a no-brainer.  Not 
> that I see them
> dropping TSO/ISPF because having a fairly simple way to 
> interact with z/OS
> is always going to be a requirement.
> 
> Rob

I'd prefer that they replace their "vi" clone with the FOSS "vim". All that I 
see in the announcement about "vi" is enhanced support of ASCII, not 
functionality.

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 

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


Re: z/OS 1.13 preview

2011-02-15 Thread Scott Ford
I agree I cut my teeth on VM/VSE in the 4381 days..
 
Augusto:

I agree I cut my teeth on VM/VSE in the 4381 days..
 
Scott J Ford
 





From: August Carideo 
To: IBM-MAIN@bama.ua.edu
Sent: Tue, February 15, 2011 11:46:26 AM
Subject: Re: z/OS 1.13 preview

VSE has come a long way since what a lot used to know it as
not up to par w/ Z/os for something's esp with right OEM s/w beats it in
others
( just my opinion , and yes I know what opinions are like no need to remind
me )



                                                                          
            Rob Schramm                                                  
                                                                To 
            Sent by: IBM              IBM-MAIN@bama.ua.edu                
            Mainframe                                                  cc 
            Discussion List                                              
                                Re: z/OS 1.13 preview              
                                                                          
                                                                          
            02/15/2011 11:09                                              
            AM                                                            
                                                                          
                                                                          
            Please respond to                                            
              IBM Mainframe                                              
              Discussion List                                              
                                                              
                                                                          
                                                                          




I think VM is cool too.  I don't really have an opinion about VSE.
Although, it has been my experience that each of the Operating Systems out
there have their "cool points".  I just am really excited about the 1.13
things... and I am not finished reading the whole thing.

Rob

On Tue, Feb 15, 2011 at 11:02 AM, August Carideo
wrote:

> I like VM/VSE better
> Ok now don't beat me up here
> LOL
>
>
>
>
>            Rob Schramm
>                        L.COM>                                                    To
>            Sent by: IBM              IBM-MAIN@bama.ua.edu
>            Mainframe                                                  cc
>            Discussion List
>                        .edu>                    Re: z/OS 1.13 preview
>
>
>            02/15/2011 10:59
>            AM
>
>
>            Please respond to
>              IBM Mainframe
>              Discussion List
>                              .edu>
>
>
>
>
>
>
> Does anyone else think that working with z/OS is completely the coolest
> thing since the invention of "sliced bread"?
>
> I am reading thru the 1.13 announcement and there is alot of really cool
> stuff. It is hard to just select a few things to talk about.
>
> Rob Schramm
>
> On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
> wrote:
>
> > Today the IBM announcements newsletter included the
> > preview for z/OS 1.13.
> >
> > One point that caught my eye immediately:
> >
> >  * Support is planned for in-stream data sets
> >    to be used within JCL procedures and for
> >    include statements.
> >
> > Well! That's been a long time coming. But I'm sure
> > more than a few on this list will appreciate it.
> > (Note: announced for JES2 only)
> >
> >
> > Another interesting change:
> >
> >  * Support is planned for job return codes.
> >    This support will be designed to allow you
> >    to specify that the job return code be set
> >    to the highest return code encountered by
> >    any step, the last step, or a specified
> >    step in the job. This will help make it
> >    simpler to interpret the results of job
> >    execution.
> >
> >
> > For ISPF:
> >
> >  * Line command level Edit macros
> >
> >
> > There are _tons_ of other enhancements listed:
> > this looks to be one of the most complex new
> > releases in quite a while. I'll report on the
> > ones that seem significant to the application
> > development community in my annual post after
> > the docs are available and I've had a chance
> > to through them more carefully. But the
> > above seemed significant and easy to grasp
> > right away.
> >
> >
> >
> > --
> >
> > Kind regards,
> >
> > -Steve Comstock
> > The Trainer's Friend, Inc.
> >
> > 303-393-8716
> > http://www.trainersfriend.com
> >
> > * To get a good Return on your Investment, first make an investment!
> >  + Training your people is an excellent investment
> >
> > * Try our new tool for calculating your Return On Investment
> >    for training dollars at
> >  http://www.trainersfriend.com/ROI/roi.html
> >
> > --
> 

Re: z/OS 1.13 preview

2011-02-15 Thread August Carideo
VSE has come a long way since what a lot used to know it as
not up to par w/ Z/os for something's esp with right OEM s/w beats it in
others
( just my opinion , and yes I know what opinions are like no need to remind
me )



   
 Rob Schramm   
  To 
 Sent by: IBM  IBM-MAIN@bama.ua.edu
 Mainframe  cc 
 Discussion List   
  Re: z/OS 1.13 preview   
   
   
 02/15/2011 11:09  
 AM
   
   
 Please respond to 
   IBM Mainframe   
  Discussion List  

   
   




I think VM is cool too.  I don't really have an opinion about VSE.
 Although, it has been my experience that each of the Operating Systems out
there have their "cool points".  I just am really excited about the 1.13
things... and I am not finished reading the whole thing.

Rob

On Tue, Feb 15, 2011 at 11:02 AM, August Carideo
wrote:

> I like VM/VSE better
> Ok now don't beat me up here
> LOL
>
>
>
>
> Rob Schramm
>  L.COM> To
> Sent by: IBM  IBM-MAIN@bama.ua.edu
> Mainframe  cc
> Discussion List
>  .edu> Re: z/OS 1.13 preview
>
>
> 02/15/2011 10:59
> AM
>
>
> Please respond to
>   IBM Mainframe
>  Discussion List
>.edu>
>
>
>
>
>
>
> Does anyone else think that working with z/OS is completely the coolest
> thing since the invention of "sliced bread"?
>
> I am reading thru the 1.13 announcement and there is alot of really cool
> stuff. It is hard to just select a few things to talk about.
>
> Rob Schramm
>
> On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
> wrote:
>
> > Today the IBM announcements newsletter included the
> > preview for z/OS 1.13.
> >
> > One point that caught my eye immediately:
> >
> >  * Support is planned for in-stream data sets
> >to be used within JCL procedures and for
> >include statements.
> >
> > Well! That's been a long time coming. But I'm sure
> > more than a few on this list will appreciate it.
> > (Note: announced for JES2 only)
> >
> >
> > Another interesting change:
> >
> >  * Support is planned for job return codes.
> >This support will be designed to allow you
> >to specify that the job return code be set
> >to the highest return code encountered by
> >any step, the last step, or a specified
> >step in the job. This will help make it
> >simpler to interpret the results of job
> >execution.
> >
> >
> > For ISPF:
> >
> >  * Line command level Edit macros
> >
> >
> > There are _tons_ of other enhancements listed:
> > this looks to be one of the most complex new
> > releases in quite a while. I'll report on the
> > ones that seem significant to the application
> > development community in my annual post after
> > the docs are available and I've had a chance
> > to through them more carefully. But the
> > above seemed significant and easy to grasp
> > right away.
> >
> >
> >
> > --
> >
> > Kind regards,
> >
> > -Steve Comstock
> > The Trainer's Friend, Inc.
> >
> > 303-393-8716
> > http://www.trainersfriend.com
> >
> > * To get a good Return on your Investment, first make an investment!
> >  + Training your people is an excellent investment
> >
> > * Try our new tool for calculating your Return On Investment
> >for training dollars at
> >  http://www.trainersfriend.com/ROI/roi.html
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> > Search the archives at http://bama.ua.edu/archives/ibm-main.html
> >
>
>
>
> --
> Rob Schramm
> Senior

Re: z/OS 1.13 preview

2011-02-15 Thread Scott Ford
It sounds like z/OS 1.13 will have a lot of great features. 
Rob/John:

It sounds like z/OS 1.13 will have a lot of great features. I also am an 
ex-VMer, about 10+ yrs worth, loved CMS. TSO kinda pales in compassion to 
CMS, IMHO.

 
Scott J Ford
 





From: Rob Schramm 
To: IBM-MAIN@bama.ua.edu
Sent: Tue, February 15, 2011 11:19:43 AM
Subject: Re: z/OS 1.13 preview

John,

Not that I am a firm advocate of vi ... (I used to complain endlessly about
it when I was working on AIX and grew to more of a grudging acceptance
because it was one of the few things I could count on when moving in between
the various UNIX flavors) but it is nice to know the basics.  I am
encouraged that even vi made the list for 1.13.  I have to agree that
additional movement in Unix System Services shell would be a good thing.
Although, I think I see the writing clearly when it comes to zOSMF.  I
think that zOSMF will become the defacto delivery for all new interactions
with z/OS.  It is just way too much of a no-brainer.  Not that I see them
dropping TSO/ISPF because having a fairly simple way to interact with z/OS
is always going to be a requirement.

Rob

On Tue, Feb 15, 2011 at 11:07 AM, McKown, John <
john.mck...@healthmarkets.com> wrote:

> > -Original Message-
> > From: IBM Mainframe Discussion List
> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > Sent: Tuesday, February 15, 2011 9:59 AM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: z/OS 1.13 preview
> >
> > Does anyone else think that working with z/OS is completely
> > the coolest
> > thing since the invention of "sliced bread"?
> >
> > I am reading thru the 1.13 announcement and there is alot of
> > really cool
> > stuff. It is hard to just select a few things to talk about.
> >
> > Rob Schramm
>
> For a general purpose, all around, reliable operating system, z/OS is
> excellent. It may fall behind others in specific areas. Eg: TSO on z/OS
> stinks (IMO) compared to a CMS on z/VM. With some enhancements, a z/OS UNIX
> shell could easily become my interactive environment of choice. The main
> enhancement would be an ISPF for UNIX which would allow me to do SDSF,
> edit/view/browse, DSLIST, and HCD in a X window on my desktop. And if IBM
> were to embrace the GNU versions of the UNIX utilities instead of their own
> versions, I'd be in nerd-vana.
>
> Too bad most managers truly believe that "Windows is faster, better,
> cheaper!" than z/OS. That was a mantra around here about 3 years ago.
>
> --
> John McKown
> Systems Engineer IV
> IT
>
> Administrative Services Group
>
> HealthMarkets(r)
>
> 9151 Boulevard 26 * N. Richland Hills * TX 76010
> (817) 255-3225 phone *
> john.mck...@healthmarkets.com * www.HealthMarkets.com
>
> Confidentiality Notice: This e-mail message may contain confidential or
> proprietary information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the original
> message. HealthMarkets(r) is the brand name for products underwritten and
> issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake
> Life Insurance Company(r), Mid-West National Life Insurance Company of
> TennesseeSM and The MEGA Life and Health Insurance Company.SM
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: List Civility

2011-02-15 Thread Scott Ford
Your thoughts are so very much along the lines of how I think. 
Steve:

Your thoughts are so very much along the lines of how I think. I feel with a 
lot 
experience, you still have questions and need a extra pair of eyes.
No one knows all the answers. 

Thank you
 
Scott J Ford
 





From: Steve Dover 
To: IBM-MAIN@bama.ua.edu
Sent: Mon, February 14, 2011 8:41:03 AM
Subject: List Civility

Can't we all just get along?  Over the last 6 months, there have been a 
number of rants on this list that just seem to keep growing.  They morph into 
beasts with no heart or soul.  There has been name calling and childish verbal 
attacks that have no place in a list comprised of 'adults'.  Sure we all have 
our 

opinions, and in a place when asked our opinions can be presented.  I feel as 
if I am not one of the 'smart' people on this list, but on occasion I have been 
able to share my insight and wisdom for things I had implemented in the past.  
I don't usually respond to things, as there are plenty of responses for 
questions raised.  There are times when I have had to use Google or Wikipedia 
to understand a post, because my vocabulary is not what some peoples are.  
I think it is time for us all to take a deep breath, relax and remember what 
this 

list was created for.  I agree with the recent comment about humor/humour.  
Different parts of the world, different cultures and different lifestyles make 
things hard to translate.  In the US, we can't even agree on what to call a 
carbonated, non-alcoholic beverage.  Is it really a pop, soda or Coke?  I am 
sorry to ramble here, but I love the resources this list makes available for 
me.  

I gleen bits and pieces nearly every day that make my life easier.

If you care to bash me for this, go ahead.  My skin is thick from years of poor 
choices, but do it offline, so we don't morph into another long series of rants 
that show our lack of civility.
Steve

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



 

Don't get soaked.  Take a quick peek at the forecast
with the Yahoo! Search weather shortcut.
http://tools.search.yahoo.com/shortcuts/#loc_weather

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


Re: z/OS 1.13 preview

2011-02-15 Thread Rob Schramm
John,

Not that I am a firm advocate of vi ... (I used to complain endlessly about
it when I was working on AIX and grew to more of a grudging acceptance
because it was one of the few things I could count on when moving in between
the various UNIX flavors) but it is nice to know the basics.  I am
encouraged that even vi made the list for 1.13.  I have to agree that
additional movement in Unix System Services shell would be a good thing.
 Although, I think I see the writing clearly when it comes to zOSMF.  I
think that zOSMF will become the defacto delivery for all new interactions
with z/OS.  It is just way too much of a no-brainer.  Not that I see them
dropping TSO/ISPF because having a fairly simple way to interact with z/OS
is always going to be a requirement.

Rob

On Tue, Feb 15, 2011 at 11:07 AM, McKown, John <
john.mck...@healthmarkets.com> wrote:

> > -Original Message-
> > From: IBM Mainframe Discussion List
> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > Sent: Tuesday, February 15, 2011 9:59 AM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: Re: z/OS 1.13 preview
> >
> > Does anyone else think that working with z/OS is completely
> > the coolest
> > thing since the invention of "sliced bread"?
> >
> > I am reading thru the 1.13 announcement and there is alot of
> > really cool
> > stuff. It is hard to just select a few things to talk about.
> >
> > Rob Schramm
>
> For a general purpose, all around, reliable operating system, z/OS is
> excellent. It may fall behind others in specific areas. Eg: TSO on z/OS
> stinks (IMO) compared to a CMS on z/VM. With some enhancements, a z/OS UNIX
> shell could easily become my interactive environment of choice. The main
> enhancement would be an ISPF for UNIX which would allow me to do SDSF,
> edit/view/browse, DSLIST, and HCD in a X window on my desktop. And if IBM
> were to embrace the GNU versions of the UNIX utilities instead of their own
> versions, I'd be in nerd-vana.
>
> Too bad most managers truly believe that "Windows is faster, better,
> cheaper!" than z/OS. That was a mantra around here about 3 years ago.
>
> --
> John McKown
> Systems Engineer IV
> IT
>
> Administrative Services Group
>
> HealthMarkets(r)
>
> 9151 Boulevard 26 * N. Richland Hills * TX 76010
> (817) 255-3225 phone *
> john.mck...@healthmarkets.com * www.HealthMarkets.com
>
> Confidentiality Notice: This e-mail message may contain confidential or
> proprietary information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the original
> message. HealthMarkets(r) is the brand name for products underwritten and
> issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake
> Life Insurance Company(r), Mid-West National Life Insurance Company of
> TennesseeSM and The MEGA Life and Health Insurance Company.SM
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: z/OS 1.13 preview

2011-02-15 Thread Rob Schramm
I think VM is cool too.  I don't really have an opinion about VSE.
 Although, it has been my experience that each of the Operating Systems out
there have their "cool points".  I just am really excited about the 1.13
things... and I am not finished reading the whole thing.

Rob

On Tue, Feb 15, 2011 at 11:02 AM, August Carideo wrote:

> I like VM/VSE better
> Ok now don't beat me up here
> LOL
>
>
>
>
> Rob Schramm
>  L.COM> To
> Sent by: IBM  IBM-MAIN@bama.ua.edu
> Mainframe  cc
> Discussion List
>  .edu> Re: z/OS 1.13 preview
>
>
> 02/15/2011 10:59
> AM
>
>
> Please respond to
>   IBM Mainframe
>  Discussion List
>.edu>
>
>
>
>
>
>
> Does anyone else think that working with z/OS is completely the coolest
> thing since the invention of "sliced bread"?
>
> I am reading thru the 1.13 announcement and there is alot of really cool
> stuff. It is hard to just select a few things to talk about.
>
> Rob Schramm
>
> On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
> wrote:
>
> > Today the IBM announcements newsletter included the
> > preview for z/OS 1.13.
> >
> > One point that caught my eye immediately:
> >
> >  * Support is planned for in-stream data sets
> >to be used within JCL procedures and for
> >include statements.
> >
> > Well! That's been a long time coming. But I'm sure
> > more than a few on this list will appreciate it.
> > (Note: announced for JES2 only)
> >
> >
> > Another interesting change:
> >
> >  * Support is planned for job return codes.
> >This support will be designed to allow you
> >to specify that the job return code be set
> >to the highest return code encountered by
> >any step, the last step, or a specified
> >step in the job. This will help make it
> >simpler to interpret the results of job
> >execution.
> >
> >
> > For ISPF:
> >
> >  * Line command level Edit macros
> >
> >
> > There are _tons_ of other enhancements listed:
> > this looks to be one of the most complex new
> > releases in quite a while. I'll report on the
> > ones that seem significant to the application
> > development community in my annual post after
> > the docs are available and I've had a chance
> > to through them more carefully. But the
> > above seemed significant and easy to grasp
> > right away.
> >
> >
> >
> > --
> >
> > Kind regards,
> >
> > -Steve Comstock
> > The Trainer's Friend, Inc.
> >
> > 303-393-8716
> > http://www.trainersfriend.com
> >
> > * To get a good Return on your Investment, first make an investment!
> >  + Training your people is an excellent investment
> >
> > * Try our new tool for calculating your Return On Investment
> >for training dollars at
> >  http://www.trainersfriend.com/ROI/roi.html
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> > Search the archives at http://bama.ua.edu/archives/ibm-main.html
> >
>
>
>
> --
> Rob Schramm
> Senior Systems Engineer
>
> w: 513.305.6224
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: z/OS 1.13 preview

2011-02-15 Thread McKown, John
> -Original Message-
> From: IBM Mainframe Discussion List 
> [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> Sent: Tuesday, February 15, 2011 9:59 AM
> To: IBM-MAIN@bama.ua.edu
> Subject: Re: z/OS 1.13 preview
> 
> Does anyone else think that working with z/OS is completely 
> the coolest
> thing since the invention of "sliced bread"?
> 
> I am reading thru the 1.13 announcement and there is alot of 
> really cool
> stuff. It is hard to just select a few things to talk about.
> 
> Rob Schramm

For a general purpose, all around, reliable operating system, z/OS is 
excellent. It may fall behind others in specific areas. Eg: TSO on z/OS stinks 
(IMO) compared to a CMS on z/VM. With some enhancements, a z/OS UNIX shell 
could easily become my interactive environment of choice. The main enhancement 
would be an ISPF for UNIX which would allow me to do SDSF, edit/view/browse, 
DSLIST, and HCD in a X window on my desktop. And if IBM were to embrace the GNU 
versions of the UNIX utilities instead of their own versions, I'd be in 
nerd-vana.

Too bad most managers truly believe that "Windows is faster, better, cheaper!" 
than z/OS. That was a mantra around here about 3 years ago.

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 

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


Re: z/OS 1.13 preview

2011-02-15 Thread August Carideo
I like VM/VSE better
Ok now don't beat me up here
LOL



   
 Rob Schramm   
  To 
 Sent by: IBM  IBM-MAIN@bama.ua.edu
 Mainframe  cc 
 Discussion List   
  Re: z/OS 1.13 preview   
   
   
 02/15/2011 10:59  
 AM
   
   
 Please respond to 
   IBM Mainframe   
  Discussion List  

   
   




Does anyone else think that working with z/OS is completely the coolest
thing since the invention of "sliced bread"?

I am reading thru the 1.13 announcement and there is alot of really cool
stuff. It is hard to just select a few things to talk about.

Rob Schramm

On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
wrote:

> Today the IBM announcements newsletter included the
> preview for z/OS 1.13.
>
> One point that caught my eye immediately:
>
>  * Support is planned for in-stream data sets
>to be used within JCL procedures and for
>include statements.
>
> Well! That's been a long time coming. But I'm sure
> more than a few on this list will appreciate it.
> (Note: announced for JES2 only)
>
>
> Another interesting change:
>
>  * Support is planned for job return codes.
>This support will be designed to allow you
>to specify that the job return code be set
>to the highest return code encountered by
>any step, the last step, or a specified
>step in the job. This will help make it
>simpler to interpret the results of job
>execution.
>
>
> For ISPF:
>
>  * Line command level Edit macros
>
>
> There are _tons_ of other enhancements listed:
> this looks to be one of the most complex new
> releases in quite a while. I'll report on the
> ones that seem significant to the application
> development community in my annual post after
> the docs are available and I've had a chance
> to through them more carefully. But the
> above seemed significant and easy to grasp
> right away.
>
>
>
> --
>
> Kind regards,
>
> -Steve Comstock
> The Trainer's Friend, Inc.
>
> 303-393-8716
> http://www.trainersfriend.com
>
> * To get a good Return on your Investment, first make an investment!
>  + Training your people is an excellent investment
>
> * Try our new tool for calculating your Return On Investment
>for training dollars at
>  http://www.trainersfriend.com/ROI/roi.html
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



--
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: z/OS 1.13 preview

2011-02-15 Thread Rob Schramm
Does anyone else think that working with z/OS is completely the coolest
thing since the invention of "sliced bread"?

I am reading thru the 1.13 announcement and there is alot of really cool
stuff. It is hard to just select a few things to talk about.

Rob Schramm

On Tue, Feb 15, 2011 at 10:07 AM, Steve Comstock
wrote:

> Today the IBM announcements newsletter included the
> preview for z/OS 1.13.
>
> One point that caught my eye immediately:
>
>  * Support is planned for in-stream data sets
>to be used within JCL procedures and for
>include statements.
>
> Well! That's been a long time coming. But I'm sure
> more than a few on this list will appreciate it.
> (Note: announced for JES2 only)
>
>
> Another interesting change:
>
>  * Support is planned for job return codes.
>This support will be designed to allow you
>to specify that the job return code be set
>to the highest return code encountered by
>any step, the last step, or a specified
>step in the job. This will help make it
>simpler to interpret the results of job
>execution.
>
>
> For ISPF:
>
>  * Line command level Edit macros
>
>
> There are _tons_ of other enhancements listed:
> this looks to be one of the most complex new
> releases in quite a while. I'll report on the
> ones that seem significant to the application
> development community in my annual post after
> the docs are available and I've had a chance
> to through them more carefully. But the
> above seemed significant and easy to grasp
> right away.
>
>
>
> --
>
> Kind regards,
>
> -Steve Comstock
> The Trainer's Friend, Inc.
>
> 303-393-8716
> http://www.trainersfriend.com
>
> * To get a good Return on your Investment, first make an investment!
>  + Training your people is an excellent investment
>
> * Try our new tool for calculating your Return On Investment
>for training dollars at
>  http://www.trainersfriend.com/ROI/roi.html
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: Timeout Problem after Switching a DAC unit with OSA in the z10

2011-02-15 Thread George Rodriguez
Hi Chris,

I'm still reading your reply to the Attachmate tech-note link that I gave
you, but I thought that it's important to let you know that the only change
we made is what's documented below:

Enabling Keep-alive Support in EXTRA!

To enable client-initiated keep-alive support, you must configure EXTRA! to
use the Microsoft TCP/IP KeepAlive parameter. Follow these steps:

   1. Close any open EXTRA! host sessions.
   2. In a plain text editor, such as Notepad, open the EXTRA! session
   configuration or EDP file you are using for the TN3270 session. (To enable
   the KeepAlive parameter in all newly created TN3270 sessions, modify the
   3270.EDP file.)

By default, this file is located at C:\Program
Files\Attachmate\EXTRA!\Sessions\ENU\Template\3270.EDP.

   1. In your EDP file, scroll down to the [Connection] heading.
   2. Add the following line to the [Connections] section.

KeepAlive=YES

Or, to disable this feature (the default), delete the line or change the
value to NO.
KeepAlive=NO

   1. Save the file.
   2. Restart EXTRA!.

We did NOT make the registry change, so I'm assuming that the default of 2
hours is in effect. From the little I've read from your response, this is
NOT a good thing.

Is it possible for you to provide any information on the firewall settings
and what to look for or what's not specified that could be causing this 2
minute disconnection problem?

Again, I truly appreciate all the help you've provided.
*
*
*George Rodriguez*
*Specialist II - IT Solutions*
*Application Support / Quality Assurance*
*PX - 47652*
*(561) 357-7652 (office)*
*(561) 707-3496 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District For Six Consecutive Years*



On Mon, Feb 14, 2011 at 11:55 PM, Chris Mason wrote:

> George
>
> I'm pleased to see that you report having solved your problem and I'm sorry
> for the delay in responding to your numerous posts of a fortnight ago. You
> may have noticed some of the aggression with which I have had to deal in
> the
> last few days - and it continues - but you deserve the responses I've been
> getting ready.
>
> In order to understand what I am about to cover, you will need to read over
> my response to your post where you asked me to analyse the Attachmate
> article which, in essence involves introducing TCP-level "keepalive"
> processing
> in the TCP support in the Microsoft Windows workstations supporting the
> Attachmate TN3270 client.
>
> Since you report you have solved your problem by introducing TCP
> "keepalive"
> processing in the TN3270 client, I have the following 4 points to make:
>
> 1. TCP "keepalive" - or its application-level equivalent - can only solve
> the
> sort of "timeout" problem you reported initially by, as it were, keeping a
> firewall happy so that it does not decide to terminate TCP connections. The
> other role of "keepalive" is to detect the death, real or apparent, of a
> partner
> in a TCP connection so that the local end of the TCP connection can be laid
> to rest! You haven't expressed a need for this capability of "keepalive".
>
> 2. Presumably you have decided on a value other than 2 hours for the
> KeepAliveTime Windows registry parameter so it would be useful to know what
> value, time interval, you have chosen.
>
> 3. Assuming the value is, say, 10 minutes (60), as a means of
> satisfying
> the firewall rules, you could have specified a value of 600 (10 minutes)
> for the
> TIMEMARK statement and, say, 300 (5 minutes) for the SCANINTERVAL
> statement in the TN3270E server PROFILE data set. I imagine that would be
> easier than deploying the Windows registry change and adjustment to the
> Attachmate EDP file out to all your external clients.
>
> 4. There is an alternative or a complement to 3 which is to check what the
> firewall rules are which apply to your TN3270 service IP addresses and
> server
> port number, 23. You should, of course, ensure that the TIMEMARK frequency
> is less than the "lack of activity" timer in the firewall rules.
>
> -
>
> So, if your problem had been to "clean up" lost TCP connections in the
> workstations supporting your Attachmate clients, you have done the right
> thing by deploying the customisation described in the Attachmate article.
>
> However, since your problem was to avoid disconnections of the TN3270
> traffic, it is very probable there were two much easier ways to solve the
> problem - but it's your choice.
>
> Chris Mason
>
> On Fri, 28 Jan 2011 07:48:58 -0500, George Rodriguez
>  wrote:
>
> >Chris / Patrick,
> >
> >The tech-note in Attachmate's database did solve the timeout problem.
> Thanks
> >again for the help...
> >
> >*George Rodriguez*
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archiv

z/OS 1.13 preview at SHARE in Anaheim

2011-02-15 Thread Edward Jaffe

On 2/15/2011 7:07 AM, Steve Comstock wrote:

Today the IBM announcements newsletter included the
preview for z/OS 1.13.


Previewed z/OS 1.13 features will be presented in detail at SHARE in Anaheim at 
the end of this month. If you or your "bean counters" were on the "fence," this 
announcement alone should provide reason enough to attend.


--
Edward E Jaffe
Phoenix Software International, Inc
831 Parkview Drive North
El Segundo, CA 90245
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

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


Re: Problems invoking xlc under USS

2011-02-15 Thread Oliver Mueller
Michael,

thanks a lot!

I thought xlc would use the STEPLIB environment variable but xlc is
unaffected by this variable. xlc relies only on the steplib option in
xlc.cfg. That was my mistake.

I copied /usr/lpp/cbclib/xlc/etc/xlc.cfg to my current working directory:

  cp /usr/lpp/cbclib/xlc/etc/xlc.cfg myxlc.cfg

I modified the value of the steplib option in myxlc.cfg from none to
CBC.SCCNCMP.

Thereafter the command

  xlc -F./xlc.cfg -o hw hw.c

worked successfully.

Regards,
Oliver

Am 15.02.2011 15:14, schrieb Michael Klaeschen:
> You are calling XL C compiler. This one has a configuration file, 
> typically '/bin/../usr/lpp/cbclib/xlc/etc/xlc.cfg'. Have a look. There, 
> you'll find the "steplib" XL C compiler option which is set to "NONE" by 
> default. It's your choice: put CCNDRVR into LPA or LNKLST or overwrite XL 
> C compiler option. Nota bene you have to differ between shell symbol 
> "STEPLIB" and compiler option "steplib".
> 
> Cheers 
> Michael
> 
> 
> 
> 
> Oliver Mueller  
> Gesendet von: IBM Mainframe Discussion List 
> 2011-02-15 11:43
> Bitte antworten an
> IBM Mainframe Discussion List 
> 
> 
> An
> IBM-MAIN@bama.ua.edu
> Kopie
> 
> Thema
> Problems invoking xlc under USS
> 
> 
> 
> 
> 
> 
> Hi
> 
> I encounter a problem at invoking xlc under z/OS UNIX System Services.
> 
> If I try to compile and link a program by a command such as
> 
>  xlc -o hw hw.c
> 
> I will receive this error message:
> 
> EDC5129I No such file or directory. (errno2=0x05940252)FSUM3221 xlc:
> Cannot spawn program /usr/lpp/cbclib/xlc/exe/ccndrvr - EDC5129I No such
> file or directory. (errno2=0x05940252).
> 
> /usr/lpp/cbclib/xlc/exe/ccndrvr is an external link and pointing to this:
> 
>  /usr/lpp/cbclib/xlc/exe/ccndrvr -> CCNDRVR
> 
> The STEPLIB environment variable is set to CBC.SCCNCMP.
> 
> Does somebody has a hint what's going on here?
> 
> Thank you in advance.
> 
> Regards,
> Oliver
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


z/OS 1.13 preview

2011-02-15 Thread Steve Comstock

Today the IBM announcements newsletter included the
preview for z/OS 1.13.

One point that caught my eye immediately:

  * Support is planned for in-stream data sets
to be used within JCL procedures and for
include statements.

Well! That's been a long time coming. But I'm sure
more than a few on this list will appreciate it.
(Note: announced for JES2 only)


Another interesting change:

  * Support is planned for job return codes.
This support will be designed to allow you
to specify that the job return code be set
to the highest return code encountered by
any step, the last step, or a specified
step in the job. This will help make it
simpler to interpret the results of job
execution.


For ISPF:

  * Line command level Edit macros


There are _tons_ of other enhancements listed:
this looks to be one of the most complex new
releases in quite a while. I'll report on the
ones that seem significant to the application
development community in my annual post after
the docs are available and I've had a chance
to through them more carefully. But the
above seemed significant and easy to grasp
right away.



--

Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-393-8716
http://www.trainersfriend.com

* To get a good Return on your Investment, first make an investment!
  + Training your people is an excellent investment

* Try our new tool for calculating your Return On Investment
for training dollars at
  http://www.trainersfriend.com/ROI/roi.html

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


Re: VTAM acronym consistancy

2011-02-15 Thread Rob Schramm
Chris,

You are correct.

I did mean Cursor Stability, I actually confused my posts.  I meant to send
my post to the DB2 listserv.  Thank you so much for the expansive
explanation of my error.

My appreciation for you grows by the hour.

Rob Schramm


On Tue, Feb 15, 2011 at 9:17 AM, Chris Mason wrote:

> Rob
>
> > Got too focused on CS stuff.
>
> I don't expect you mean the following:
>
> 
>
> cursor stability (CS)
>
> An isolation level that for cursors, after fetching and while positioned on
> a
> row, prevents the row from being changed by other applications until the
> cursor position is moved from the row. CS also prevents any row that is
> changed by other applications from being read until the change is
> committed.
> See also read stability, repeatable read, uncommitted read, isolation
> level.
>
> 
>
> http://www-01.ibm.com/software/globalization/terminology/c.html
>
> So you should do what I always do and which I'm content for anyone to do -
> unless its an "official" abbreviation inside an "official" IBM manual -
> which is to
> introduce your abbreviations as follows:
>
> Communications Server (CS)
>
> Until informed that the official IBM standard was as above, I used to use
> the
> following form in my presentations:
>
> Communications Server, CS,
>
> so I changed since I'm all for uniformity!
>
> > I feel like an idiot.
>
> Don't take it so to heart! I'm sure none of the rest of us feel that.
>
> Chris Mason
>
> On Tue, 15 Feb 2011 08:31:54 -0500, Rob Schramm
>  wrote:
>
> >I feel like an idiot.  Got too focused on CS stuff.  
> >
> >On Tue, Feb 15, 2011 at 8:27 AM, McKown, John
>  >> wrote:
> >
> >> > -Original Message-
> >> > From: IBM Mainframe Discussion List
> >> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> >> > Sent: Monday, February 14, 2011 7:59 PM
> >> > To: IBM-MAIN@bama.ua.edu
> >> > Subject: VTAM acronym consistancy
> >> >
> >> > I have been trading e-mails with the Terminology folks and reading the
> >> > Terminology page and noticed the formatted system service
> >> > which made me
> >> > wonder:
> >> >
> >> > If unformatted system service is represented by the acronym
> >> > USS.  Why is
> >> > there no FSS for formatted system service?  Or is the FSS
> >> > acronym already in
> >> > use but neglected by the Terminology folks?
> >> >
> >> > Rob Schramm
> >>
> >> FSS is Functional SubSystem (which is so much nicer than the NSS -
> >> Nonfunctional SubSystem delivered by some vendors - and yes I know that
> NSS
> >> is z/VM's Named Saved Segment). It refers to printers which are usually
> AFP
> >> printers. They are driven in an address space (STC) separate from the
> JES
> >> address space.
> >>
> >> Ref:
> >> http://publibz.boulder.ibm.com/cgi-
> bin/bookmgr_OS390/BOOKS/IEA2E510/CCONTENTS
> >>
> >> --
> >> John McKown
> >
> >--
> >Rob Schramm
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: z/OS 1.13

2011-02-15 Thread Tom Marchant
On Tue, 15 Feb 2011 08:15:28 -0600, Tom Marchant wrote:

>It wasn't too long ago that some here wrote that IBM would "never"
>support code above the bar.

I should have been more clear.
It was not anyone from IBM who wrote that.

Sorry if I caused any confusion.

--
Tom Marchant

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


Re: VTAM acronym consistancy

2011-02-15 Thread Chris Mason
Rob

> Got too focused on CS stuff.

I don't expect you mean the following:



cursor stability (CS)

An isolation level that for cursors, after fetching and while positioned on a 
row, prevents the row from being changed by other applications until the 
cursor position is moved from the row. CS also prevents any row that is 
changed by other applications from being read until the change is committed. 
See also read stability, repeatable read, uncommitted read, isolation level.



http://www-01.ibm.com/software/globalization/terminology/c.html

So you should do what I always do and which I'm content for anyone to do - 
unless its an "official" abbreviation inside an "official" IBM manual - which 
is to 
introduce your abbreviations as follows:

Communications Server (CS)

Until informed that the official IBM standard was as above, I used to use the 
following form in my presentations:

Communications Server, CS,

so I changed since I'm all for uniformity!

> I feel like an idiot.

Don't take it so to heart! I'm sure none of the rest of us feel that.

Chris Mason

On Tue, 15 Feb 2011 08:31:54 -0500, Rob Schramm 
 wrote:

>I feel like an idiot.  Got too focused on CS stuff.  
>
>On Tue, Feb 15, 2011 at 8:27 AM, McKown, John 
> wrote:
>
>> > -Original Message-
>> > From: IBM Mainframe Discussion List
>> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
>> > Sent: Monday, February 14, 2011 7:59 PM
>> > To: IBM-MAIN@bama.ua.edu
>> > Subject: VTAM acronym consistancy
>> >
>> > I have been trading e-mails with the Terminology folks and reading the
>> > Terminology page and noticed the formatted system service
>> > which made me
>> > wonder:
>> >
>> > If unformatted system service is represented by the acronym
>> > USS.  Why is
>> > there no FSS for formatted system service?  Or is the FSS
>> > acronym already in
>> > use but neglected by the Terminology folks?
>> >
>> > Rob Schramm
>>
>> FSS is Functional SubSystem (which is so much nicer than the NSS -
>> Nonfunctional SubSystem delivered by some vendors - and yes I know that 
NSS
>> is z/VM's Named Saved Segment). It refers to printers which are usually 
AFP
>> printers. They are driven in an address space (STC) separate from the JES
>> address space.
>>
>> Ref:
>> http://publibz.boulder.ibm.com/cgi-
bin/bookmgr_OS390/BOOKS/IEA2E510/CCONTENTS
>>
>> --
>> John McKown
>
>--
>Rob Schramm

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


Re: z/OS 1.13

2011-02-15 Thread Tom Marchant
On Tue, 15 Feb 2011 08:15:22 -0500, Lizette Koehler wrote:

>Some very interesting elements are upcoming in z/OS V1.13 planned
>availability -  Sept 2011.

In addition to what Lizette noticed, I saw:

"z/OS will be designed to support some programs running in 64-bit 
storage, provided that they meet certain restrictions."

It wasn't too long ago that some here wrote that IBM would "never" 
support code above the bar.

-- 
Tom Marchant

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


Antwort: Problems invoking xlc under USS

2011-02-15 Thread Michael Klaeschen
You are calling XL C compiler. This one has a configuration file, 
typically '/bin/../usr/lpp/cbclib/xlc/etc/xlc.cfg'. Have a look. There, 
you'll find the "steplib" XL C compiler option which is set to "NONE" by 
default. It's your choice: put CCNDRVR into LPA or LNKLST or overwrite XL 
C compiler option. Nota bene you have to differ between shell symbol 
"STEPLIB" and compiler option "steplib".

Cheers 
Michael




Oliver Mueller  
Gesendet von: IBM Mainframe Discussion List 
2011-02-15 11:43
Bitte antworten an
IBM Mainframe Discussion List 


An
IBM-MAIN@bama.ua.edu
Kopie

Thema
Problems invoking xlc under USS






Hi

I encounter a problem at invoking xlc under z/OS UNIX System Services.

If I try to compile and link a program by a command such as

 xlc -o hw hw.c

I will receive this error message:

EDC5129I No such file or directory. (errno2=0x05940252)FSUM3221 xlc:
Cannot spawn program /usr/lpp/cbclib/xlc/exe/ccndrvr - EDC5129I No such
file or directory. (errno2=0x05940252).

/usr/lpp/cbclib/xlc/exe/ccndrvr is an external link and pointing to this:

 /usr/lpp/cbclib/xlc/exe/ccndrvr -> CCNDRVR

The STEPLIB environment variable is set to CBC.SCCNCMP.

Does somebody has a hint what's going on here?

Thank you in advance.

Regards,
Oliver

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


Re: Adding Lines to End of Member

2011-02-15 Thread Eric Verwijs
My DISP=MOD was simpler.

//IEBGENER EXEC  PGM=IEBGENER   
//SYSPRINT DD  SYSOUT=X 
//SYSINDD  DUMMY
//SYSUT1   DD  *
Add this line
add this one too
//SYSUT2   DD  DISP=MOD,DSN=SOMEPDS(MEMBER)

The MOD was an attempt to append to the end of the dataset. It would work with 
just a dataset but not a PDS or library. I forgot about the nature of PDS's 
that you don't really modify members, you create new ones each time when you 
modify one.


Regards,
Eric Verwijs
Programmer Analyst | Programmeur-analyste
CPP/ OAS/ IA Production Support Team | Équipe de soutien à la production RPC / 
SV / IA
frederick.verw...@hrsdc-rhdcc.gc.ca
Telephone | Téléphone 613-941-7492
Facsimile | Télécopieur 613-941-4234
National Headquarters | Administration Centrale
Human Resources and Skills Development Canada | Ressources humaines et 
Développement des compétences Canada
Government of Canada | Gouvernement du Canada

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Haynes, Stan
Sent: Tuesday, February 15, 2011 8:50 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

This worked for me:

//ADDLINES PROC M=   
//GENEREXEC PGM=IEBGENER 
//SYSUT1   DD DSN=SZH120.PLAY.CNTL(&M),DISP=OLD  
// DD DSN=SZH120.TEST.CNTL(TWOLINES),DISP=SHR
//SYSUT2   DD DSN=SZH120.PLAY.CNTL(&M),DISP=OLD  
//SYSPRINT DD DUMMY  
//SYSINDD DUMMY  
// PEND  
//*  
//S1   EXEC ADDLINES,M=J 

Why use DISP=MOD ? You're not adding members, you're replacing them, so 
DISP=OLD is indicated (SHR works too). 


Stan
mailto:stan.hay...@cra-arc.gc.ca
(613) 941-8091


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Eric Verwijs
Sent: February 15, 2011 8:40 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

I tried using DISP=MOD but it failed with SB14-04.
Duplicate name in the directory. I suppose that will happen no matter which 
utility you use, IEBGENER, IDCAMS or your own program. Oh well. I didn't know 
you couldn't use DISP=MOD for a PDS or library. 


Regards,
Eric Verwijs
Programmer Analyst | Programmeur-analyste CPP/ OAS/ IA Production Support Team 
| Équipe de soutien à la production RPC / SV / IA 
frederick.verw...@hrsdc-rhdcc.gc.ca
Telephone | Téléphone 613-941-7492
Facsimile | Télécopieur 613-941-4234
National Headquarters | Administration Centrale Human Resources and Skills 
Development Canada | Ressources humaines et Développement des compétences 
Canada Government of Canada | Gouvernement du Canada

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Adam Johanson
Sent: Monday, February 14, 2011 1:12 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

>Not very pretty

>//COPSTEP EXEC PGM=IEBGENER
>//SYSPRINT DD SYSOUT=*
>//SYSINDD DUMMY
>//SYSUT1 DD DISP=SHR,DSN=my.pds(MEMBERNAME)
>//   DD *
>Some kind of junk
>More junk
>//SYSUDUMP DD SYSOUT=*
>//SYSUT2 DD DISP=(SHR),DSN= my.pds(MEMBERNAME)

   Ah yeah, good thought. That works; thanks.

   - Adam

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


Re: z/OS 1.13

2011-02-15 Thread Rob Schramm
John,

I am curious about your use of "repay attention".  It attracted my
attention.  Is the intent to indicate that any attention to the announcement
will be repaid to the reader?  Or to refocus attention on z/OS?

Regards,
Rob Schramm

On Tue, Feb 15, 2011 at 7:48 AM, john gilmore wrote:

> This morning's IBM Announcement Letters contain a preview of 1.13 that will
> repay attention.
>
> John Gilmore Ashland, MA 01721-1817 USA
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: Adding Lines to End of Member

2011-02-15 Thread Haynes, Stan
This worked for me:

//ADDLINES PROC M=   
//GENEREXEC PGM=IEBGENER 
//SYSUT1   DD DSN=SZH120.PLAY.CNTL(&M),DISP=OLD  
// DD DSN=SZH120.TEST.CNTL(TWOLINES),DISP=SHR
//SYSUT2   DD DSN=SZH120.PLAY.CNTL(&M),DISP=OLD  
//SYSPRINT DD DUMMY  
//SYSINDD DUMMY  
// PEND  
//*  
//S1   EXEC ADDLINES,M=J 

Why use DISP=MOD ? You're not adding members, you're replacing them, so 
DISP=OLD is indicated (SHR works too). 


Stan
mailto:stan.hay...@cra-arc.gc.ca
(613) 941-8091


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Eric Verwijs
Sent: February 15, 2011 8:40 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

I tried using DISP=MOD but it failed with SB14-04.
Duplicate name in the directory. I suppose that will happen no matter which 
utility you use, IEBGENER, IDCAMS or your own program. Oh well. I didn't know 
you couldn't use DISP=MOD for a PDS or library. 


Regards,
Eric Verwijs
Programmer Analyst | Programmeur-analyste
CPP/ OAS/ IA Production Support Team | Équipe de soutien à la production RPC / 
SV / IA
frederick.verw...@hrsdc-rhdcc.gc.ca
Telephone | Téléphone 613-941-7492
Facsimile | Télécopieur 613-941-4234
National Headquarters | Administration Centrale
Human Resources and Skills Development Canada | Ressources humaines et 
Développement des compétences Canada
Government of Canada | Gouvernement du Canada

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Adam Johanson
Sent: Monday, February 14, 2011 1:12 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

>Not very pretty

>//COPSTEP EXEC PGM=IEBGENER
>//SYSPRINT DD SYSOUT=*
>//SYSINDD DUMMY
>//SYSUT1 DD DISP=SHR,DSN=my.pds(MEMBERNAME)
>//   DD *
>Some kind of junk
>More junk
>//SYSUDUMP DD SYSOUT=*
>//SYSUT2 DD DISP=(SHR),DSN= my.pds(MEMBERNAME)

   Ah yeah, good thought. That works; thanks.

   - Adam

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


Re: Adding Lines to End of Member

2011-02-15 Thread Eric Verwijs
I tried using DISP=MOD but it failed with SB14-04.
Duplicate name in the directory. I suppose that will happen no matter which 
utility you use, IEBGENER, IDCAMS or your own program. Oh well. I didn't know 
you couldn't use DISP=MOD for a PDS or library. 


Regards,
Eric Verwijs
Programmer Analyst | Programmeur-analyste
CPP/ OAS/ IA Production Support Team | Équipe de soutien à la production RPC / 
SV / IA
frederick.verw...@hrsdc-rhdcc.gc.ca
Telephone | Téléphone 613-941-7492
Facsimile | Télécopieur 613-941-4234
National Headquarters | Administration Centrale
Human Resources and Skills Development Canada | Ressources humaines et 
Développement des compétences Canada
Government of Canada | Gouvernement du Canada

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Adam Johanson
Sent: Monday, February 14, 2011 1:12 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

>Not very pretty

>//COPSTEP EXEC PGM=IEBGENER
>//SYSPRINT DD SYSOUT=*
>//SYSINDD DUMMY
>//SYSUT1 DD DISP=SHR,DSN=my.pds(MEMBERNAME)
>//   DD *
>Some kind of junk
>More junk
>//SYSUDUMP DD SYSOUT=*
>//SYSUT2 DD DISP=(SHR),DSN= my.pds(MEMBERNAME)

   Ah yeah, good thought. That works; thanks.

   - Adam

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


Re: VTAM acronym consistancy

2011-02-15 Thread Rob Schramm
I feel like an idiot.  Got too focused on CS stuff.  

On Tue, Feb 15, 2011 at 8:27 AM, McKown, John  wrote:

> > -Original Message-
> > From: IBM Mainframe Discussion List
> > [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> > Sent: Monday, February 14, 2011 7:59 PM
> > To: IBM-MAIN@bama.ua.edu
> > Subject: VTAM acronym consistancy
> >
> > I have been trading e-mails with the Terminology folks and reading the
> > Terminology page and noticed the formatted system service
> > which made me
> > wonder:
> >
> > If unformatted system service is represented by the acronym
> > USS.  Why is
> > there no FSS for formatted system service?  Or is the FSS
> > acronym already in
> > use but neglected by the Terminology folks?
> >
> > Rob Schramm
>
> FSS is Functional SubSystem (which is so much nicer than the NSS -
> Nonfunctional SubSystem delivered by some vendors - and yes I know that NSS
> is z/VM's Named Saved Segment). It refers to printers which are usually AFP
> printers. They are driven in an address space (STC) separate from the JES
> address space.
>
> Ref:
> http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E510/CCONTENTS
>
> --
> John McKown
> Systems Engineer IV
> IT
>
> Administrative Services Group
>
> HealthMarkets(r)
>
> 9151 Boulevard 26 * N. Richland Hills * TX 76010
> (817) 255-3225 phone *
> john.mck...@healthmarkets.com * www.HealthMarkets.com
>
> Confidentiality Notice: This e-mail message may contain confidential or
> proprietary information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the original
> message. HealthMarkets(r) is the brand name for products underwritten and
> issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake
> Life Insurance Company(r), Mid-West National Life Insurance Company of
> TennesseeSM and The MEGA Life and Health Insurance Company.SM
>
>
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>



-- 
Rob Schramm
Senior Systems Engineer

w: 513.305.6224

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


Re: VTAM acronym consistancy

2011-02-15 Thread McKown, John
> -Original Message-
> From: IBM Mainframe Discussion List 
> [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Rob Schramm
> Sent: Monday, February 14, 2011 7:59 PM
> To: IBM-MAIN@bama.ua.edu
> Subject: VTAM acronym consistancy
> 
> I have been trading e-mails with the Terminology folks and reading the
> Terminology page and noticed the formatted system service 
> which made me
> wonder:
> 
> If unformatted system service is represented by the acronym 
> USS.  Why is
> there no FSS for formatted system service?  Or is the FSS 
> acronym already in
> use but neglected by the Terminology folks?
> 
> Rob Schramm

FSS is Functional SubSystem (which is so much nicer than the NSS - 
Nonfunctional SubSystem delivered by some vendors - and yes I know that NSS is 
z/VM's Named Saved Segment). It refers to printers which are usually AFP 
printers. They are driven in an address space (STC) separate from the JES 
address space.

Ref: 
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2E510/CCONTENTS

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * 
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 

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


Re: VTAM acronym consistancy

2011-02-15 Thread Staller, Allan
Already in use (but not by VTAM) FSS - FUNCTIONAL SUB SYSTEM for (AFP
printing)


If unformatted system service is represented by the acronym USS.  Why is
there no FSS for formatted system service?  Or is the FSS acronym
already in
use but neglected by the Terminology folks?


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


Re: z/OS 1.13

2011-02-15 Thread Lizette Koehler
> 
> This morning's IBM Announcement Letters contain a preview of 1.13 that
will repay
> attention.
> 
> John Gilmore Ashland, MA 01721-1817 USA
> 
> 

Some very interesting elements are upcoming in z/OS V1.13 planned
availability -  Sept 2011.


The link  to the announcement letter is

http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?subtype=ca&infotype=an&sup
plier=897&letternum=ENUS211-007

Too many to summarize, but the following were interesting

* The Microsoft Windows-based Capacity Provisioning Manager application
is planned to support the specification of capacity increments for both
provisioning and deprovisioning actions, and allow you to specify different
quantities for obtaining the first capacity increment and subsequent
increments. This will help you add the right amount of capacity more
quickly, with fewer activation actions. Also, support is planned for the 32-
and 64-bit versions of Microsoft WindowsR 7 Professional Edition. In
addition, the z/OSMF Capacity Provisioning application is planned to add
support for displaying capacity increments.

* The Health Checker framework is planned to be enhanced to allow you to
specify when health checks should be run for the first time, and when they
should be repeated using a new SYNCVAL keyword in the HZSPRMxx parmlib
member or on the Health Checker MODIFY command. This can help you schedule
checks to run at more predictable times. Also, extensions to the Health
Checker framework are planned to allow better control over messages and
check intervals, and to allow checks to increase the severity of their
exceptions as system conditions change. These changes are intended to allow
programmers to write advanced health checks with improved usability.

* New DFSMSrmm and DFSMSdfp function is planned for:
  o Allowing the system to automatically correct the volume list for
multivolume tape data sets in many cases when a volume list does not include
all necessary volumes or the volumes are specified out of order. This is
intended to help you avoid problems when processing multivolume tape data
sets ensuring that all the data associated with them is available to be
read.
  o Allowing you to specify whether data sets are managed by
expiration date or Vital Record Specifications (VRS) policy when they are
created. This will help you simplify your retention policies, help you avoid
batch VRS policy management, and enable you to determine how long a tape
data set will be retained at the time it is created. Corresponding support
is planned for the DFSMSrmm dialog, to show either the VRS retention date or
the expiration date in data set and volume search results.

Networking

It has been said "z/OS is not just a node on the network, z/OS is the
network," and that is in large part due to the z/OS Communications Server
and its wide array of networking technologies, including both TCP/IP and
SNA. System and data security technologies, fault tolerance, autodetection
and autorecovery capabilities -- all mean that z/OS can provide reliable and
trustworthy networking services. With intelligent configuration, dynamic
optimization, self tuning, and network routing, it adapts to different
networking conditions and is capable of shifting workloads and traffic to
meet quality of service and business needs.

An overview of networking improvements follows. Details about these
improvements are in prior sections of this announcement.

In z/OS V1.13, there are several enhancements planned for the Configuration
Assistant for z/OS Communications Server, to support:

* Retrieving TCP/IP profile information from active TCP/IP stacks
* Allowing a single instance of the Configuration Assistant to be used
to configure both z/OS V1.12 and z/OS V1.13 Communications Server
* Allowing a policy rule to be defined once for multiple stacks

In z/OS Communications Server, support is planned for:

* More flexibility in specifying reserved ranges of TCP/IP ports
* Better memory and JES resource management for the CSSMTP server when
retrying mail send operations
* Improved z/OS system resolver processing when name servers are
unresponsive
* Autonomic recovery from APPN routing tree corruption
* Monitoring for CSM-constrained conditions and taking specified
recovery actions
* Faster results from Enterprise Extender connectivity tests initiated
using the DISPLAY NET,EEDIAG,TEST=YES command when firewalls block ICMP
messages
* More-responsive VIPAROUTE processing when TCP/IP stacks join or leave
the group and when OMPROUTE is recycled
* FTP support for more data set types in the extended addressing space
(EAS) on extended address volumes (EAVs)
* A new DISPLAY TCPIP,TELNET command you can use to display a list of
TN3270E Telnet servers
* New Network Management Interface (NMI) functions for the system
resolver, and improvements to the NMI TMI_Copybuffer callable services
* Network Address Translation (NAT) traversal su

Re: Problems invoking xlc under USS

2011-02-15 Thread Chris Mason
Oliver

How curious a juxtaposition you have engendered in jumping in with a case of 
the problem around which much theoretical perturbations have been swirling.

USS in the title is potentially ambiguous of course but the risk is much 
diminished by the "invoking" of something that is unlikely to be a VTAM-based 
program - but I can't say everyone would necessarily know them all. Also the 
introducing preposition is more likely to be "with" than "under".

All that having been said, this Subject line just about passes inspection.

-

My contribution here is merely to question whether or not you have checked 
the key part of the "reason code" which appears to be saying you lack some 
sort of authority:



0252

JRExternalLink An external symbolic link was found but is not supported.

Action: Do not specify the name of an external symbolic link.



This was taken from the z/OS UNIX System Services Messages and Codes 
manual Chapter 5, "Reason Codes".

You didn't mention you had any worries about the "external symbolic link" so 
perhaps knowing what this code means could help you progress with your 
problem determination.

I can never remember this command but perhaps knowing it exists is sufficient 
and Google gave me the following - adjusted to include your code - slightly 
corrected by removing a part I think is incorrect - and with the alternative I 
am espousing included in the description:



Issue the following TSO command to display the individual message text for a 
zUNIX return and reason code

TSO BPXMTEXT 

Example:

TSO bpxmtext 05940252

JRExternalLink: An external symbolic link was found but is not supported.

Action: Do not specify the name of an external symbolic link.



Chris Mason

On Tue, 15 Feb 2011 04:43:50 -0600, Oliver Mueller  
wrote:

>Hi
>
>I encounter a problem at invoking xlc under z/OS UNIX System Services.
>
>If I try to compile and link a program by a command such as
>
>   xlc -o hw hw.c
>
>I will receive this error message:
>
>EDC5129I No such file or directory. (errno2=0x05940252)FSUM3221 xlc:
>Cannot spawn program /usr/lpp/cbclib/xlc/exe/ccndrvr - EDC5129I No such
>file or directory. (errno2=0x05940252).
>
>/usr/lpp/cbclib/xlc/exe/ccndrvr is an external link and pointing to this:
>
>   /usr/lpp/cbclib/xlc/exe/ccndrvr -> CCNDRVR
>
>The STEPLIB environment variable is set to CBC.SCCNCMP.
>
>Does somebody has a hint what's going on here?
>
>Thank you in advance.
>
>Regards,
>Oliver

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


Re: USS and FSS (Was: VTAM acronym consistency)

2011-02-15 Thread Rob Schramm
Chris,

I don't really have any trouble keeping up.  While I could have done the
search on the manuals, I would not have caught the significance without
spending a fair amount of time ploughing through the manuals.  Since FSS is
a valid concept and used as an acronym.  It would seem that the Terminology
folks have "missed one".

I do find it interesting regarding the automatic behavior of FSS regardless
what is specified.

As to the spell checker, I try not to let spelling interfere with my
conversations.  I never noticed any difference while reading Shakespeare,
and I usually don't notice spelling errors unless my brain refuses to
properly interpret.

Cheers,
Rob

On Tue, Feb 15, 2011 at 1:49 AM, Chris Mason wrote:

> Rob
>
> A simple search in the manuals most likely to indulge the topic would
> quickly
> find your answer:
>
> z/OS V1R12 Communications Server SNA Network Implementation Guide, SC31-
> 8777-10 (NIG)
>
> http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B5A0/
>
> FSS: 1 hit
> USS: 25 hits
>
> z/OS V1R12 Communications Server SNA Resource Definition Reference, SC31-
> 8778-11 (RDR)
>
> http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B6A0/
>
> FSS: 17 hits
> USS: 99 hits
>
> Those statistics do not tell the whole story but they support the statement
> that the VTAM systems programmer needs to think about setting up some
> customisation in order to exploit the many capabilities related to the
> topic
> of "Unformatted System Services" whereas, by its very nature, "Formatted
> System Services" is SNA business-as-usual protocols and formats and no
> customisation is involved. It's not a property of the contrasting names but
> any
> VTAM systems programmer knows that the whole purpose of "Unformatted
> System Services" is to convert from text strings convenient for human end
> users to the same request units that correspond to what is described
> as "Formatted System Services". In other words "Unformatted System
> Services" is a layer "on top", as it were, of "Formatted System Services".
>
> Note that the single "hit" in the NIG is actually a sample definition that
> happens to be SSCPFM=FSS while the 17 "hits" in the RDR are descriptions of
> the definition statement operand SSCPFM which has FSS as one of the
> possible values, the default in fact. When SSCPFM has another value, always
> with USS as the initial part of the value, it indicates to VTAM what
> character
> string rules will apply to the "Unformatted System Services" data.
>
> Actually, VTAM really only needs to be told about those character string
> rules.
> Since there is a bit in the request header which indicates whether a
> request
> unit on the LU to SSCP (VTAM) flow is "formatted" - that is, can be parsed
> according to the structure of the bits and bytes in the request unit data -
>  or
> is not "formatted", if VTAM receives a "formatted" request, it quietly
> assumes
> SSCPFM=FSS even if some other value, starting with USS, is actually
> specified.
>
> I hope you were keeping up at the back!
>
> Anyhow thanks for prompting me to get my thoughts on the subject
> organised. As you may have noticed whenever VTAM definition statements are
> offered in a post, I usually take the opportunity to "clean them up". I
> realise
> now that there really is no rôle for SSCPFM=FSS and so in future I will
> suggest
> nobody ever bothers to specify it. It must be getting on for 35 years since
> I've known that operand with this value without realising quite how
> pointless it
> is!
>
> Regarding "terminology", FSS, being business-as-usual, just doesn't need
> anything like the volume of references that USS does given the wealth of
> customisation possibilities which it has accrued over the years.
>
> Which takes me to another pair of manuals where you will find a number of
> references to USS:
>
> z/OS V1R12 Communications Server IP Configuration Guide, SC31-8775-17 (CG)
>
> http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B3A0/
>
> z/OS V1R12 Communications Server IP Configuration Reference, SC31-8776-18
> (CR)
>
> http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/F1A1B4A0/
>
> In these manuals there are no "hits" for FSS but a number for USS. This is
> because the VTAM facility has been taken on by the TN3270E server so that
> the "look and feel" for the 3270 emulator user converting to TELNET
> (TN3270)
> from a pure SNA connection need not change - or need change only to be
> enhanced since the variable information which can be presented in the USS
> messages can include IP-related information.
>
> There are no "hits" for FSS since, in effect, the TN3270 solicitor panel is
> the
> approximate equivalent of "Formatted System Services".
>
> If the designer behind the TN3270E RFCs had been on his toes, he might have
> allowed an even more enhanced function but he regrettably removed one of
> the most useful aspects of the USS function in not permitting USS messages
> to appear while a sessi

z/OS 1.13

2011-02-15 Thread john gilmore
This morning's IBM Announcement Letters contain a preview of 1.13 that will 
repay attention.

John Gilmore Ashland, MA 01721-1817 USA

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


Re: Etre épéegrammatic (Was: HFS file quest ions)

2011-02-15 Thread Bonno, Tuco
well, what I was trying to say in my previous post before it was so rudely 
interrupted was 
I found my own fencing much easier in the fencing hall than in the bruyère, 
(and to forstall any queries, no, I was not a "beau sabreur")  but for triple 
canopy jungle, only a machete will do, AT THE MINIMUM .
/s/ tuco bonno; 
Graduate, College of Conflict Management;
University of SouthEast Asia;
"I partied on the Ho Chi Minh Trail - tiến lên !! "





-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Chris Mason
Sent: Tuesday, 15 February, 2011 01:25 AM
To: IBM-MAIN@bama.ua.edu
Subject: Etre épéegrammatic (Was: HFS file questions)

Tuco

If we are to levitate our contributions with the yeast of jest:

In his time Jean de la Bruyère had a rather more effective remedy at his 
disposal assuming he was assured of greater skill than his detractor. Of 
course, he should make his stand on de la pelouse ou de l'herbe rather than de 
la bruyère.

Chris Mason

On Mon, 14 Feb 2011 09:10:57 -0500, Bonno, Tuco  
wrote:

>>>It's sad that a very few knowledgeable and otherwise professional people 
here feel the need to engage in "pissing contests" over >>such insignificant 
minutiae as a perceived "malappropriation" of an overloaded acronym at the 
expense of someone who asks a >>legitimate question.
>
>
>"it is indeed a great misfortune neither to have enough wit to speak well, nor 
enough judgement to remain silent"
>    Jean de La Bruyère,  (my favorite 17th century french epigrammist)
>
>"if you don't have anything worthwhile to say lieutenant, then just shut the 
f*ck up"
>  Captain-who-shall-remain-nameless, my favorite mentor, somewhere in 
the Mekong Delta, 1971
>
>
>/s/ tuco bonno;
>Graduate, College of Conflict Management;
>University of SouthEast Asia;
>"I partied on the Ho Chi Minh Trail - tiến lên !! "

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


Re: Adding Lines to End of Member

2011-02-15 Thread Veilleux, Jon L
The only issue I have with REXX (which I love using) is that I/O tends to be 
fairly slow, otherwise I would agree that it is the best solution.

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Cris Hernandez #9
Sent: Monday, February 14, 2011 4:06 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Adding Lines to End of Member

I vote for the REXX option. 

Use LISTD after an OUTTRAP to capture  a list of members, DO loop thru the 
list, allocate the dsn/member, readin, add the 2 lines to the end by adding to 
a counter and setting the needed value to the stemvar, and then write back out. 
 









--- On Mon, 2/14/11, Adam Johanson  wrote:

> From: Adam Johanson 
> Subject: Adding Lines to End of Member
> To: IBM-MAIN@bama.ua.edu
> Date: Monday, February 14, 2011, 12:03 PM I've got to change about 
> 1,000 members of a PDS containing JCL by adding
> 2 lines to the end of each member.
> 
>    I thought there might be a way to do this with IEBUPDTE, but he 
> requires sequence numbers, which a lot of the members don't have.
> And it also looks
> like you can't just tell him something like, "sequence number = last".
> 
>    Is there any way to do this with another utility? I'd like to do 
> this with standard MVS utilities, but if it winds up that we need to 
> use a REXX program to do it, then we can go that route.
> 
>    Thanks.
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send 
> email to lists...@bama.ua.edu 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 
lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at 
http://bama.ua.edu/archives/ibm-main.html
This e-mail may contain confidential or privileged information. If
you think you have received this e-mail in error, please advise the
sender by reply e-mail and then delete this e-mail immediately.
Thank you. Aetna   

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


Re: Problems invoking xlc under USS

2011-02-15 Thread Mary Anne Matyaz
Oliver, also, if you're attempting to compile the BCPII sample, take a look at 
redbook SG24-7853 appendix D...that's what finally got me through. 

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


Re: Problems invoking xlc under USS

2011-02-15 Thread Mary Anne Matyaz
Oliver, I had the same issue. I wish I could say I fixed it, but what I did was 
simply compile outside of USS, have a look at EDCC in proclib. 

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


Re: Etre épéegrammatic (Was: HFS file questions)

2011-02-15 Thread Bonno, Tuco
indeed. I found my own fencing much easier in the fencing hall than in the bruy

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Chris Mason
Sent: Tuesday, 15 February, 2011 01:25 AM
To: IBM-MAIN@bama.ua.edu
Subject: Etre épéegrammatic (Was: HFS file questions)

Tuco

If we are to levitate our contributions with the yeast of jest:

In his time Jean de la Bruyère had a rather more effective remedy at his 
disposal assuming he was assured of greater skill than his detractor. Of 
course, he should make his stand on de la pelouse ou de l'herbe rather than de 
la bruyère.

Chris Mason

On Mon, 14 Feb 2011 09:10:57 -0500, Bonno, Tuco  
wrote:

>>>It's sad that a very few knowledgeable and otherwise professional people 
here feel the need to engage in "pissing contests" over >>such insignificant 
minutiae as a perceived "malappropriation" of an overloaded acronym at the 
expense of someone who asks a >>legitimate question.
>
>
>"it is indeed a great misfortune neither to have enough wit to speak well, nor 
enough judgement to remain silent"
>    Jean de La Bruyère,  (my favorite 17th century french epigrammist)
>
>"if you don't have anything worthwhile to say lieutenant, then just shut the 
f*ck up"
>  Captain-who-shall-remain-nameless, my favorite mentor, somewhere in 
the Mekong Delta, 1971
>
>
>/s/ tuco bonno;
>Graduate, College of Conflict Management;
>University of SouthEast Asia;
>"I partied on the Ho Chi Minh Trail - tiến lên !! "

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


Problems invoking xlc under USS

2011-02-15 Thread Oliver Mueller
Hi

I encounter a problem at invoking xlc under z/OS UNIX System Services.

If I try to compile and link a program by a command such as

xlc -o hw hw.c

I will receive this error message:

EDC5129I No such file or directory. (errno2=0x05940252)FSUM3221 xlc:
Cannot spawn program /usr/lpp/cbclib/xlc/exe/ccndrvr - EDC5129I No such
file or directory. (errno2=0x05940252).

/usr/lpp/cbclib/xlc/exe/ccndrvr is an external link and pointing to this:

/usr/lpp/cbclib/xlc/exe/ccndrvr -> CCNDRVR

The STEPLIB environment variable is set to CBC.SCCNCMP.

Does somebody has a hint what's going on here?

Thank you in advance.

Regards,
Oliver

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