HSM query on dataset migrate

2006-08-25 Thread Tommy Tsui
Hi all, Anyone knows why some of datasets allow migrate from primary to ML1 but it never migrate from ML1 to ML2 even I set the following parms on Management class...why? I also find some dataset will migrate to ML2 directly but not ML1 first...why? I haven't type any migrate command...

SVC Screening and TCBUSER

2006-08-25 Thread Philippe Leite
Hi Listers, I'm writing a SVC screening program to monitor some SVCs. I'm executing CPOOL BUILD in the main program and I want to pass the CPID to Screen routine. The Screen routine will execute CPOOL GET/FREE based on the CPID passed by the main program. My question is: Is it safe to pass

Re: HSM query on dataset migrate

2006-08-25 Thread Richards.Bob
Tommy, Based on the little information you have provided, I'll have to guess at the possible answers. Is the volume/pool enabled for migration action against its datasets? What is the value of LEVEL 1 DAYS for the specific mgmtclas you are asking about? Go into ISMF, option 3, and list the

Question on DCOLLECT data

2006-08-25 Thread Lizette Koehler
This has been cross posted to the MXG-L List. I am creating a process using MXG to summarize or identify consumers in our SMS Test Pools. I created my list using the DCOLDSET data base in MXG. When I presented that to another person more familiar with these data sets, they determined that some

Re: Question on DCOLLECT data

2006-08-25 Thread Richards.Bob
Lizette, Unless things have changed since I did this on an everyday basis, volumes CANNOT belong to more than one SMS pool! As for the rest, this may be causing your problems. Bob Richards -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of

Re: HSM query on dataset migrate

2006-08-25 Thread O'Brien, David W. (NIH/CIT) [C]
Tommy, What are the thresholds for your ML1 volumes? Nothing will migrate from ML1 to ML2 until the ML1 volumes reach the specified threshold. From: Tommy Tsui [mailto:[EMAIL PROTECTED] Sent: Fri 8/25/2006 5:02 AM To: IBM-MAIN@BAMA.UA.EDU Subject: HSM query on

Re: SVC Screening and TCBUSER

2006-08-25 Thread Binyamin Dissen
On Fri, 25 Aug 2006 05:38:20 -0500 Philippe Leite [EMAIL PROTECTED] wrote: :I'm writing a SVC screening program to monitor some SVCs. I'm executing :CPOOL BUILD in the main program and I want to pass the CPID to Screen :routine. The Screen routine will execute CPOOL GET/FREE based on the CPID

Re: Why is it still there?

2006-08-25 Thread Vernooy, C.P. - SPLXM
Paul, The third disposition is only taken when the step abends. This step did not abend, so the second disp is taken. Kees. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... The job step below failed with RC = 12. I know why it failed so that part's OK. However, since the step did

IBM commercials

2006-08-25 Thread Dave Jones
These are some funny, imho, IBM commercials. http://www.youtube.com/watch?v=MSqXKp-00hM http://www.youtube.com/watch?v=_rmbPXa6TDU http://www.youtube.com/watch?v=vQPX4-1uuw0 Enjoy, and have a good weekend. DJ -- For IBM-MAIN

Re: Why is it still there?

2006-08-25 Thread Vernooy, C.P. - SPLXM
Captain Paralytic [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Vernooy, C.P. - SPLXM wrote: Paul, The third disposition is only taken when the step abends. This step did not abend, so the second disp is taken. Kees. [EMAIL PROTECTED] wrote in message

Re: Z/OS 1.4 to 1.7 Migration

2006-08-25 Thread Petersen, Jim
We are on z/OS 1.7 and have a project currently going on to migrate VS COBOL II to Enterprise COBOL. All VS COBOL II programs are currently executing okay under both z/OS 1.6 and z/OS 1.7. ___ Jim Petersen MVS - Lead Systems Engineer Home Depot

Re: Z/OS 1.4 to 1.7 Migration

2006-08-25 Thread Laine, Rogers
Jim, Are these VS Cobol II program running under LE? If they are then you should be ok. Rogers -Original Message- From: Petersen, Jim [mailto:[EMAIL PROTECTED] Sent: Friday, August 25, 2006 8:00 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Z/OS 1.4 to 1.7 Migration We are on z/OS 1.7 and

TLMS Label Printing

2006-08-25 Thread Jorge Supkay
In this shop which I recently joined, operators use the LAB subtask of TLMS to print tape labels. The TLMSLBLS code was modified to use route code 19 to print a label when a tape dataset is created with a particular high level qualifier. The printer is defined as a 3286-2 console connected

Re: SVC Screening and TCBUSER

2006-08-25 Thread Craddock, Chris
My question is: Is it safe to pass the CPID from the main program to the Screen routine through the TCBUSER ? Do I have a better alternative ? Not a chance. You should use the name/token service. It does what you need and its really fast. CC

Re: Why is it still there?

2006-08-25 Thread Hunkeler Peter (KIUB 34)
Any program that returns to the operating system by branching to the address it was told when it initially got control is assumed to have completed successfully. The return code does not matter from MVS's point of view. It does of course from the application's point of view, since it tells

Re: TLMS Label Printing

2006-08-25 Thread Leif Rundberget
Well, first off, you need to evaluate if this is really needed, or is this a process to keep the operators busy and has been in use for the past 20 years and nobody has been willing to step up and put a stop to the practice. Here is my rendition of a similar case about 10 years ago. Two

AMBLIST and program objects - finding offsets.

2006-08-25 Thread Gibbons, Mark
I was trying to set an IF slip given a csect name in an NFS module. Since these modules are now program objects I was not getting the right offset from the beginning of the load module. The offsets listed in AMBLIST for the csects are not from the beginning of the load module. Binder

Re: SVC Screening and TCBUSER

2006-08-25 Thread Philippe Leite
Hi Chris, Yes, I could use IEANTRT, but I would have to allocate some memory through GETMAIN/STORAGE to retrieve the TOKEN, and I want to avoid it. That's why I'm using CPOOL services. Best regards, Philippe Leite z/OS Systems Programmer On Fri, 25 Aug 2006 10:38:28 -0400, Craddock, Chris

Re: SVC Screening and TCBUSER

2006-08-25 Thread Taylor, Clarence B
Have you considered just passing it in the screening table? That is when you construct your svc screening table, just make it bigger (hopefully mapped by a macro), then when the screening routing gets control, it can go to the end of the table and pickup any data the main routine placed there.

Re: SVC Screening and TCBUSER

2006-08-25 Thread Philippe Leite
Hi Brad, Yes, you're right. I think this is the best approach. I was thinking to use SSCTUSER but this would require a lot of extra coding. Thank you very much guys. Philippe Leite z/OS Systems Programmer On Fri, 25 Aug 2006 11:55:48 -0400, Taylor, Clarence B [EMAIL PROTECTED] wrote: Have

Re: TLMS Label Printing

2006-08-25 Thread Larre Shiller
Jorge - We ran into this same issue a couple years ago. We purchased an IBM label printer (4400), attached it via TCP/IP, and used JES/PSF to send it labels from CA-1 by SYSOUT class. Larre Shiller US Social Security Administration [EMAIL PROTECTED] V/M: (410) 965-2209 www.ssa.gov   The

Re: SVC Screening and TCBUSER

2006-08-25 Thread Ray Mullins
That's what I was going to suggest, too. TCBUSER did serve its purpose in the day, but I can remember a time a conflict occurred in three different products that my then-employer sold. When I had to add something similar to a product a few years, name/token was (and is) the way to go. Later,

Re: SVC Screening and TCBUSER

2006-08-25 Thread Ray Mullins
That should work, too, as long as you can single-thread the SVC you are trapping - that is, you're not going to be reissuing the SVC from inside the screening routine and expecting it to be trapped again. I'd still look at name/token, though, to pass the CPOOL ID. Later, Ray -Original

Re: SVC Screening and TCBUSER

2006-08-25 Thread Philippe Leite
mmm...I remember a conflict like that in the past, but it was with CVTUSER, not TCBUSER. Regards, Philippe Leite z/OS Systems Programmer On Fri, 25 Aug 2006 09:38:19 -0700, Ray Mullins [EMAIL PROTECTED] wrote: That's what I was going to suggest, too. TCBUSER did serve its purpose in the

Re: SVC Screening and TCBUSER

2006-08-25 Thread Philippe Leite
Hi Ray, As I said before, in order to retrieve the TOKEN I have to allocate a temporary storage through GETMAIN/STORAGE and that's exactly what I want to avoid. I will not reissue the SVC inside my Screen routine, I will do a BSM to the original SVC code, so I think this is not a problem.

Re: Why is it still there?

2006-08-25 Thread J R
Any program that returns to the operating system by branching to the address it was told when it initially got control is assumed to have completed successfully. SVC 3 = normal completion SVC 13 = abnormal completion If sss in nonzero, it was abended by a service routine and sss is the

Serializing changes to parmlib/proclib

2006-08-25 Thread Martin, Mike
All, We are beginning to customize our z./OS 1.7 (to replace 1.4). We have several folks who will be updating parmib and proclib. There is a possibility that we might step on each other's changes. Say, for instance, two people are making changes to COMMNDxx. Some people stage their changes,

Re: Serializing changes to parmlib/proclib

2006-08-25 Thread Taylor, Clarence B
There is the KISS system. When you check out a member, replace it with a template that says something like in block letters checked out by Then the member is checked out and they should not change. I know it requires agreement among the people but it is simple and free. Brad Taylor

Re: Serializing changes to parmlib/proclib

2006-08-25 Thread Dave Salt
From: Martin, Mike [EMAIL PROTECTED] We have several folks who will be updating parmib and proclib. There is a possibility that we might step on each other's changes. Is there a way to lock member so that only one person can be working on a member (or members) while they have the lock As you

ISV Anchor Table

2006-08-25 Thread Thompson, Steve (SCI TW)
Does anyone know anything about this? A table that is pointed to off the CVT/ECVT that contains pointers for ISVs to anchor things? I'd heard something about this in the mid-90s and I've drunk a few beers since then. Later, Steve Thompson

Re: ISV Anchor Table

2006-08-25 Thread Bob Shannon
It's called the Customer Anchor Table and it's hung off the ECVT. Any vendor that requests a slot (FW) can get one. Bob Shannon -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED]

Re: ISV Anchor Table

2006-08-25 Thread (IBM Mainframe Discussion List)
In a message dated 8/25/2006 1:30:49 P.M. Central Daylight Time, [EMAIL PROTECTED] writes: Does anyone know anything about this? A table that is pointed to off the CVT/ECVT that contains pointers for ISVs to anchor things? Check the IBM-MAIN archives. Many older posts. Bill Fairchild

Re: ISV Anchor Table

2006-08-25 Thread Jeffrey D. Smith
Peter Relson manages the allocation of ISV slots in table. You only get a fullword slot, so use it wisely. Be sure all of your products have a common protocol for managing it. ECVTCTBL points to the array of customer anchors. Jeffrey D. Smith Principal Product Architect Farsight Systems

Re: ISV Anchor Table

2006-08-25 Thread Thompson, Steve (SCI TW)
Thanx to all who answered this. I'm having a Senior Week. Ok, since I originally did work with this when it was first announced I've had a few beers to drink. And I just couldn't remember clearly. [And they want to blame it on us guys/gals being older than 40!] Later, Steve Thompson

Re: ISPF and Rexx requirements posted for discussion

2006-08-25 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 08/24/2006 at 01:24 PM, Pinnacle [EMAIL PROTECTED] said: ISPF and Rexx requirements have been posted for discussion on the SHARE requirements site. Please let your voice be heard. Are you interested in comments from the general public or only from SHARE members? --

Re: AMBLIST and program objects - finding offsets.

2006-08-25 Thread Robert A. Rosenberg
At 08:36 -0700 on 08/25/2006, Gibbons, Mark wrote about AMBLIST and program objects - finding offsets.: I was trying to set an IF slip given a csect name in an NFS module. Since these modules are now program objects I was not getting the right offset from the beginning of the load module. The

Re: Why is it still there?

2006-08-25 Thread Peter Hunkeler
Any program that returns to the operating system by branching to the address it was told when it initially got control is assumed to have completed successfully. SVC 3 = normal completion SVC 13 = abnormal completion Absolutely correct but programs usually don't issue SVC3 directly but rather

DFHSM Command Usage

2006-08-25 Thread Howard Rifkind
What would be the correct way to issue a DFHSM query controldatasets command? Thanks. - Get your email and more, right on the new Yahoo.com -- For IBM-MAIN

Re: DFHSM Command Usage

2006-08-25 Thread Rob Schwartz
from TSO option 6 issue hsend q controldatasets - Original Message - From: Howard Rifkind [EMAIL PROTECTED] Newsgroups: bit.listserv.ibm-main To: IBM-MAIN@BAMA.UA.EDU Sent: Friday, August 25, 2006 3:56 PM Subject: DFHSM Command Usage What would be the correct way to issue a DFHSM

Re: DFHSM Command Usage

2006-08-25 Thread Howard Rifkind
Thanks, can you do this at the system console? Rob Schwartz [EMAIL PROTECTED] wrote: from TSO option 6 issue hsend q controldatasets - Original Message - From: Howard Rifkind Newsgroups: bit.listserv.ibm-main To: Sent: Friday, August 25, 2006 3:56 PM Subject: DFHSM Command Usage

IBM Red Alert for MIDAW

2006-08-25 Thread Freddy Guevara
Be aware ... In our case, with Midaw Enabled and UA25357 applied, some of our SMF SYS1.MANxx datasets got corrupted... so we had to back out the ptf. Here is the red alert that IBM has just issued: -- ABSTRACT: Media Manager

Re: DFHSM Command Usage

2006-08-25 Thread Patrick Lyon
On Fri, 25 Aug 2006 13:00:17 -0700, Howard Rifkind [EMAIL PROTECTED] wrote: Thanks, can you do this at the system console? F DFHSM,QUERY CONTROLDATASETS -- For IBM-MAIN subscribe / signoff / archive access instructions, send

VSAM CLOSE failure problem

2006-08-25 Thread Mark
I'm running an asm recovery routine that closes several VSAM files. 3 of the files close without fail. All files are KSDS files. The last one gets a failure. r15 = 4 ERR = 0 acberflg = 0 When the task ends, we get the dreaded SC03 abend. The DDN noted is the one that failed to close. I'd

Re: DFHSM Command Usage

2006-08-25 Thread Howard Rifkind
Thanks Patrick... Patrick Lyon [EMAIL PROTECTED] wrote: On Fri, 25 Aug 2006 13:00:17 -0700, Howard Rifkind wrote: Thanks, can you do this at the system console? F DFHSM,QUERY CONTROLDATASETS -- For IBM-MAIN subscribe /

Re: Why is it still there?

2006-08-25 Thread J R
You probably mean the fact that the code type parameter of the ABEND macro detemines whether it will be seen as a user or a system abend, right? No. My quibble was with your characterization of system vs. user as service routine vs. programmer. Usually, Sxxx abends are for system code, user

SLIP trap for wild branch?

2006-08-25 Thread Chase, John
Hi, All, Got a CICS application program that branches out of itself (stays in the CICS region) somehow, and the SLIP documentation doesn't make it obvious how I should set a trap to catch it and SDUMP the region. I've looked mostly at IF and SBT scenarios, but can't seem to understand how to code

Re: AMBLIST and program objects - finding offsets.

2006-08-25 Thread Patrick O'Keefe
On Fri, 25 Aug 2006 08:36:43 -0700, Gibbons, Mark [EMAIL PROTECTED] wrote: ... The primary purpose of LISTLOAD XREF output is to map cross references between Program Objects, and not locate offsets for certain code within the entire Program Object. ... Purpose and use may be unrelated. I don't

Re: DFHSM Command Usage

2006-08-25 Thread Ted MacNEIL
from TSO option 6 issue hsend q controldatasets Even better: Read The MANUAL! When in doubt. PANIC!! -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the

Re: Serializing changes to parmlib/proclib

2006-08-25 Thread Robert A. Rosenberg
At 18:12 + on 08/25/2006, Dave Salt wrote about Re: Serializing changes to parmlib/proclib: If a proc exists in Lib 2, simply selecting it for edit will 'lock it' for the length of the edit session While there is a lock, it is on the wrong RNAME. ISPF uses a QNAME of SYSEDIT (I think)

Re: ISV Anchor Table

2006-08-25 Thread Robert A. Rosenberg
At 12:38 -0600 on 08/25/2006, Jeffrey D. Smith wrote about Re: ISV Anchor Table: Peter Relson manages the allocation of ISV slots in table. You only get a fullword slot, so use it wisely. Which is all you need until you want your table to be in 64-bit addressable storage (at which point you

Re: VSAM CLOSE failure problem

2006-08-25 Thread Thompson, Steve (SCI TW)
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Friday, August 25, 2006 3:13 PM To: IBM-MAIN@BAMA.UA.EDU Subject: VSAM CLOSE failure problem I'm running an asm recovery routine that closes several VSAM files. 3 of the files close

Re: VSAM CLOSE failure problem

2006-08-25 Thread Charles Mills
Possible freed (or corrupted) storage problem? Charles -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Friday, August 25, 2006 4:13 PM To: IBM-MAIN@BAMA.UA.EDU Subject: VSAM CLOSE failure problem I'm running an asm recovery

Re: DFHSM Command Usage

2006-08-25 Thread Howard Rifkind
Patrick, I'm issuing the following command from the console (SDSF) and getting the following message: F DFHSM,HLIST BCDS ARC1001I HLIST BCDS COMMAND FAILED, RC=0003, REAS= ARC1603I INVALID COMMAND NAME Any Ideas what's wrong? Patrick Lyon [EMAIL PROTECTED] wrote:

Re: SLIP trap for wild branch?

2006-08-25 Thread Thompson, Steve (SCI TW)
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Chase, John Sent: Friday, August 25, 2006 3:21 PM To: IBM-MAIN@BAMA.UA.EDU Subject: SLIP trap for wild branch? Hi, All, Got a CICS application program that branches out of itself (stays in the

Re: DFHSM Command Usage

2006-08-25 Thread Greg Shirey
Howard, If I remember correctly, HLIST is used in the TSO environment (like HRECALL or HMIGRATE). If you are issuing the command to the HSM address space, use the H-less form -- LIST. I don't have HSM or I'd test my own memory... HTH, Greg Shirey Ben E. Keith Company I was snubbed at SHARE

Re: DFHSM Command Usage

2006-08-25 Thread Hoesly, Bret
Howard, Try...F DFHSM,QUERY CONTROLDATASETS -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Howard Rifkind Sent: Friday, August 25, 2006 3:52 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: DFHSM Command Usage Patrick, I'm issuing the

Re: ISV Anchor Table

2006-08-25 Thread Paul Gilmartin
In a recent note, Jeffrey D. Smith said: Date: Fri, 25 Aug 2006 12:38:30 -0600 Peter Relson manages the allocation of ISV slots in table. You only get a fullword slot, so use it wisely. Be sure all of your products have a common protocol for managing it. ECVTCTBL points to the

Re: VSAM CLOSE failure problem

2006-08-25 Thread Mark
Charles Mills wrote: Possible freed (or corrupted) storage problem? Charles -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Friday, August 25, 2006 4:13 PM To: IBM-MAIN@BAMA.UA.EDU Subject: VSAM CLOSE failure problem I'm

Re: ISV Anchor Table

2006-08-25 Thread Craddock, Chris
ECVTCTBL points to the array of customer anchors. When is this preferable to name/token services? When is name/token services preferable? Is there any protocol such as prefix registration to prevent collisions in name/token services? Peter Relson doles out anchor table slots on

Re: ISV Anchor Table

2006-08-25 Thread Jeffrey D. Smith
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Paul Gilmartin Sent: Friday, August 25, 2006 3:19 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: ISV Anchor Table In a recent note, Jeffrey D. Smith said: Date: Fri, 25 Aug 2006

Re: AMBLIST and program objects - finding offsets.

2006-08-25 Thread Mark Gibbons
On Fri, 25 Aug 2006 14:39:03 -0400, Robert A. Rosenberg [EMAIL PROTECTED] wrote: At 08:36 -0700 on 08/25/2006, Gibbons, Mark wrote about AMBLIST and program objects - finding offsets.: I was trying to set an IF slip given a csect name in an NFS module. Since these modules are now program

Re: Why is it still there?

2006-08-25 Thread Gerhard Postpischil
J R wrote: You can of course code an SD37 abend and confuse everybody. That's not something I would do. A long, long time ago, a friend of mine protected our system by turning on all the password bits in SYS1 DSCBs (before RACF, etc.), without actually having passwords for them (and

Re: SVC Screening and TCBUSER

2006-08-25 Thread Gerhard Postpischil
Philippe Leite wrote: Yes, I could use IEANTRT, but I would have to allocate some memory through GETMAIN/STORAGE to retrieve the TOKEN, and I want to avoid it. That's why I'm using CPOOL services. Since MFT days, every system I've worked on used TCBUSER for accounting and related data (even

Re: SVC Screening and TCBUSER

2006-08-25 Thread Gerhard Postpischil
Ray Mullins wrote: TCBUSER did serve its purpose in the day, but I can remember a time a conflict occurred in three different products that my then-employer sold. My company was providing systems maintenance and related services to a service bureau in DC. Apparently one of their executives

Re: Problems with IBMLINK

2006-08-25 Thread Joel C. Ewing
[EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Anyone having problems signing into IBMLINK Yes, all morning. I couldn't get in on Friday either. I finally discovered my bookmarked URL was the problem. It worked fine when I went to http://www.ibm.com/ibmlink/link2 . Be sure you

Re: HLASM Macro Call Question

2006-08-25 Thread John R. Ehrman (408-463-3543 T/543-)
There's no need to do your own parsing -- as Steve Smith (I think it was) suggested, check the AINSERT statement: it was designed for exactly this kind of situation. Also, the NOCOMPAT(SYSLIST) option sometimes helps for substituted operands that are a list (like (A,B,C)), but won't help for

Re: HSM query on dataset migrate

2006-08-25 Thread Tommy Tsui
Hi Bob, Sorry, I missing the information. I already check this value before, it will migrate immediately at primary level and will migrate to ML2 after 4 day non-usage. is it true.. Migration Attributes Primary Days Non-usage . . . . 0 (0 to or blank) Level 1 Days Non-usage .

Re: VSAM CLOSE failure problem

2006-08-25 Thread Robert A. Rosenberg
At 16:20 -0500 on 08/25/2006, Mark wrote about Re: VSAM CLOSE failure problem: Charles, When I issue the close request, I do indeed still have the ACB in core. The SHOWCB ERROR as noted in the docs return the same info as the acberflg. So as far as I can tell, VSAM is returning an RC of 4,

Re: Why is it still there?

2006-08-25 Thread Robert A. Rosenberg
At 14:46 -0500 on 08/25/2006, =?ISO-8859-1?Q?Peter_Hunkeler?= wrote about Re: Why is it still there?: Usually, Sxxx abends are for system code, user abend for application code. You can of course code an SD37 abend and confuse everybody. You also have to watch out for the Sxyy Abend Codes

Re: SVC Screening and TCBUSER

2006-08-25 Thread J R
TCBUSER did serve its purpose in the day, but I can remember a time a conflict occurred in three different products that my then-employer sold. Almost twenty years ago I was a partner in an ISV. We had three main products, all of which made use of their own SVC and subsystem. (This came about

Re: Why is it still there?

2006-08-25 Thread Tom Marchant
On Fri, 25 Aug 2006 21:20:54 -0400, Robert A. Rosenberg [EMAIL PROTECTED] wrote: You also have to watch out for the Sxyy Abend Codes that are supposed to belong to user SVCs (SVC 200 - 255 [yy=c8-ff]) but IBM has Hijacked for non-User-SVCx Purposes. The only valid use I can name is Fyy for the

Re: HSM query on dataset migrate

2006-08-25 Thread Richards.Bob
Tommy, I believe someone else posted the probable reason. If the ML1 volumes are not near threshold values, it may not force it to ML2 until it needs the space. Bob Richards -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Tommy Tsui Sent:

回信: Re: HSM query on dataset migrate

2006-08-25 Thread Tommy Tsui
Understood ...thanks david richard Richards.Bob [EMAIL PROTECTED] TRUST.COM

Re: Head's Up - zIIP issue OA17458/UA28419

2006-08-25 Thread Schiradin,Roland HG-Dir itb-db/dc
Well this ptf just fix a part of the problem. Since JBB77S9 the CVT defines CVTOSLV5 DCXL1'00' BYTE 5 OF CVTOSLVL CVTZOSE EQU X'80' z/OS.e CVTZOSAS EQU X'80' z/OS.e CVTPUMA EQU X'80' z/OS.e CVTZOS_010700 EQU

Re: Head's Up - zIIP issue OA17458/UA28419

2006-08-25 Thread Jeffrey D. Smith
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Schiradin,Roland HG-Dir itb-db/dc Sent: Friday, August 25, 2006 9:22 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Head's Up - zIIP issue OA17458/UA28419 Well this ptf just fix a part of the

Re: Head's Up - zIIP issue OA17458/UA28419

2006-08-25 Thread Schiradin,Roland HG-Dir itb-db/dc
Maybe I'm too tired this evening. I can't see how testing for the existence of a symbol at assembly time tells you anything about the runtime system level. Checking the runtime level happen during runtime but at assembly time I would like to know what is maximum of info. This means I can

Re: ISV Anchor Table

2006-08-25 Thread Schiradin,Roland HG-Dir itb-db/dc
Based on the inof I got this is the list I build into SHOWzOS (Remember I start with SLOT 1) ISVNAMES TABLE 9,'BMC Mainview' TABLE 12,'Computer Associates' TABLE 21,'BMC Mainview'