Colin J Page2 is out of the office until Thu 6th March.

2008-03-04 Thread Colin J Page2
I will be out of the office starting 04/03/2008 and will not return until 06/03/2008. For LTSB Faster Payments issues, please contact Malcolm Warwick on 07764 664425 or Diana Lamb on 07725 829925. Otherwise, I will respond upon my return

Re: Service level after RSU

2008-03-04 Thread Alan Altmark
On Monday, 03/03/2008 at 11:52 EST, Jan Canavan <[EMAIL PROTECTED]> wrote: > So should we all do this? > > We id this back in when the RSU 0703 first came out. We checked it three times. > We just thought that was just the way it was. > > If more than one is having trouble, something is out of

Re: VM source code

2008-03-04 Thread Leland Lucius
Thanks all. Found where to register and download in IBM ResourceLink if anyone else is lookin'. Leland

Re: VM source code

2008-03-04 Thread Alan Altmark
On Tuesday, 03/04/2008 at 02:52 EST, Kris Buelens <[EMAIL PROTECTED]> wrote: > I think there is an error in the installation instructions: Thanks for your comments, Kris. The web page will be corrected. Sorry for any confusion. Alan Altmark z/VM Development IBM Endicott

Re: In search of mainframe engineers

2008-03-04 Thread Rick Giz
Absolutely makes sense. I've taken courses from MindLeaders that work exactly that way. Once completed, you can go back and refer to it anytime, and you can print lesson summary screens, etc. I've heard that Interskill works in a similar fashion, although I have not taken courses from them. Prob

Re: In search of mainframe engineers

2008-03-04 Thread Tom Duerbusch
There were CBT courses like this back in the '80s. The biggest problem I found was they were for a vanilla system. In the VSE world, everyone had a non-IBM tape/disk manager (VSAM/SAM was a chargable product and IBM didn't have a tape solution for VSE). Everyone had a console manager (unless yo

The list it to quiet, here's something to work on.

2008-03-04 Thread Gentry, Stephen
I have a character string 'NOW IS THE TIME ' Please note that there are multiple spaces/blanks after the word TIME I want to find the length of this character string not including the multiple blanks after TIME.(i.e. NOW IS THE TIME length=15) I can figure it out with brute force and awkw

Re: The list it to quiet, here's something to work on.

2008-03-04 Thread Rich Smrcina
Take a look at the REXX STRIP function, then take the length. Gentry, Stephen wrote: I have a character string 'NOW IS THE TIME ' Please note that there are multiple spaces/blanks after the word TIME I want to find the length of this character string not including the multiple blanks af

Re: The list it to quiet, here's something to work on.

2008-03-04 Thread Mark Boonie
Unless I've misunderstood the request, it's just: length = Length(Strip(string, 'T')) /* Strip trailing blanks and then take length */ - mb > I have a character string 'NOW IS THE TIME ' > Please note that there are multiple spaces/blanks after the word TIME > I want to find the length