Re: Cheers: PREFERENCE and KEY8 CSA storage

2005-12-08 Thread ibm-main
From: Edward E. Jaffe Customers are another story. ... Since their use can make otherwise functioning code fail, they aren't recommended for customer use. Mmmm - devel/production use maybe. I'm with Sam - turn the traps on in sandpit(s) and kick any misbehaving ISVs based on results. Well

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Terry Sambrooks
Hi: In a recent post Johnny Luo wrote: ... However,when I execute the program via JCL without coding infile DDNAME,it fails. So I want to know the exact reason.My personal guess is that a job submitted by JCL is not executed in my TSO address space.Would someone be kind enough to give some

Re: STRNO in DB2 catalog

2005-12-08 Thread Avram Friedman
The problem is 1. There is no such thing as a ICF DB2 Catalog In ICF it is simply Catalog mignt be used for none, part of or all of DB2 objects in a sub-system 2. In DB2 there is no STRNO Hence is the user talking about STRNO for DB2 Catalog VSAM datasets in the

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Luo Johnny
On 12/8/05, Terry Sambrooks [EMAIL PROTECTED] wrote: If a batch job is submitted with PGM=IKJEFT10, IKJEFT1B or any of the valid variations then whatever happens inside, be in REXX, Assembler, Cobol, PLI, will run in a TSO environment, but not the same environment as that of the submitter.

Error - Path H: cannot be found. Make sure drive path is correct.

2005-12-08 Thread Jerry Ragland
Hi all, I have my CICS region load modules installed in a volume which resides in emulated OS/2 H drive. The CICS regions were all working fine, but now I faced a problem when I was doing an IPL, during IPL it says - * IGGN505A SPECIFY UNIT FOR CICSTS31.CICS.SDFHLOAD ON MVSRES OR CANCEL

Re: SOAP for CICS

2005-12-08 Thread Peter Ten Eyck
I was thinking more along the lines of securing what programs, tran ids or data sets can be run or accessed over this connection. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED]

Make a volume under SMS control

2005-12-08 Thread Luo Johnny
I know the proper way is to add the volume to storage group when initializing the volume.But I want to know whether I can make the volume SMS-managed after initialization. When I initialize one of my volume,I didn't add it to storage group. And later,I wanna to do this.So I delete all the data

Re: Make a volume under SMS control

2005-12-08 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Luo Johnny Sent: Thursday, December 08, 2005 7:34 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Make a volume under SMS control I know the proper way is to add the volume to storage group when

Re: Commands in JCL

2005-12-08 Thread Charles Mills
You're right. If you have a string of commands, it REDUCES the operator intervention to one command, assuming you can tolerate a one-minute security exposure. Charles -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Paul Gilmartin Sent:

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Farley, Peter x23353
A batch job and your TSO session are executing in different address spaces and thus they are INDEPENDENT of each other -- what you do in one of them *usually* has no impact on the other one. The usual exception is if one of the two allocates a file EXCLUSIVELY (DISP=OLD), then the other one

Re: Make a volume under SMS control

2005-12-08 Thread Bruce Black
No. Run PGM=ADRDSSU and use the CONVERTV verb. Or if you are a FDR customer, run the FDRCONVT program (section 70 in the manual). -- Bruce A. Black Senior Software Developer for FDR Innovation Data Processing 973-890-7300 personal: [EMAIL PROTECTED] sales info: [EMAIL PROTECTED] tech

Re: Commands in JCL

2005-12-08 Thread Rob Wunderlich
On Wed, 7 Dec 2005 15:18:55 -0700, Steve Comstock [EMAIL PROTECTED] wrote: $tjobclass(*),command=execute Then update JES2PARM. No need to recycle JES or IPL or anything at all Thanks, John. But some of the other experiments worked without even changing JESPARMS. I'm good to go. Steve, I

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Lizette Koehler
Johnny, When allocating any dataset under TSO or BATCH I always ensure the DISP parameter is properly set. If you just code a DD statement of //DD1 DD DSN=datasetname Then the default DISP is OLD,DELETE. That means at job termination the data set will be deleted. I will let

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Farley, Peter x23353
Lizette, the default DISP for existing datasets is OLD,KEEP, not OLD,DELETE. -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 10:22 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: 'ALLOCATE' a data set in my TSO/E session

Re: INFOPRINT server for z/OS

2005-12-08 Thread Roberto Halais Kareh
Marie: That is one way we use it to print from CICS thru TD queues. We also do CICS SEND commands directly to the printer. We use at 110 sites. Up till now, no problems. Roberto -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Behalf Of VENET

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Imbriale, Donald (Exchange)
Actually if you do not code DISP, according to the JCL Reference manual: If you omit the DISP parameter, the default is a NEW data set with a disposition of DELETE for both normal and abnormal termination disposition. Thus, you can omit the DISP parameter for a data set that is

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Steve Comstock
Farley, Peter x23353 wrote: Lizette, the default DISP for existing datasets is OLD,KEEP, not OLD,DELETE. Peter, if you do not specify any DISP, the default is NEW,DELETE, _whether or not the data set already exists_. That's the way allocation works: it does not check first to see if the

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Lizette Koehler
Peter, Okay, I was remembering an incident where a Production IMS Reslib disappeared because the application programmer coded (in the RESLIB concatenation) //DD DSN=reslib And nothing else in the DD statement. When the IMS Control region came down - it was deleted. I think what I

Website on your mainframe

2005-12-08 Thread Steve Comstock
Well, I've gone ahead and developed a small website hosted on our zPad. It demonstrates z/OS 1.6 using the supplied (included-in-the-price) HTTP server, serving up web pages that include embedded graphics and multimedia (pdf, quicktime, macromedia) and that demonstrate sending emails and text

Re: Subject: Commands in JCL

2005-12-08 Thread Rundberget, Leif
There is an old Macro called MGCR that we setup in the 70's and it still works with z/OS 1.4. Here is the reference to the book from MVS/XA. It is a very small program and easy to compile and use. Let me know if you would like the source code and the old ENTER MACRO to compile it with. MORE

C Compiler Limit/Bug?

2005-12-08 Thread Benjamin White
I am trying to compile a large C program with large tables in it. The compiler return code is zero and produces no error messages. The problem is that the object deck or module does not have the END cards. The program would compile when the tables were smaller. What are the limits for C

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Lizette Koehler Johnny, When allocating any dataset under TSO or BATCH I always ensure the DISP parameter is properly set. If you just code a DD statement of //DD1 DD DSN=datasetname Then the

test

2005-12-08 Thread Anthony Bongiorno
test - The information contained in this electronic mail message, and any and all accompanying documents, constitutes confidential information. If you are not the intended recipient of this information, any disclosure, copying, distribution, or the taking

Re: Commands in JCL

2005-12-08 Thread Mark Zelden
On Thu, 8 Dec 2005 08:48:26 -0600, Rob Wunderlich [EMAIL PROTECTED] wrote: On Wed, 7 Dec 2005 15:18:55 -0700, Steve Comstock [EMAIL PROTECTED] wrote: $tjobclass(*),command=execute Then update JES2PARM. No need to recycle JES or IPL or anything at all Thanks, John. But some of the other

Re: Make a volume under SMS control

2005-12-08 Thread Desi de la Garza
What if you delete unit and re-define as SMS? Thanks, Desi de la Garza Systems Programmer Bexar County Information Services [EMAIL PROTECTED] -Original Message- From: McKown, John [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 7:40 AM To: IBM-MAIN@BAMA.UA.EDU Subject:

Re: Make a volume under SMS control

2005-12-08 Thread Marian Gasparovic
Use CONVERT command from ISMF in front of volume. It will generate a JCL for you. You can even run it in test mode. On 12/8/05, Luo Johnny [EMAIL PROTECTED] wrote: I know the proper way is to add the volume to storage group when initializing the volume.But I want to know whether I can make

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Farley, Peter x23353
Mea culpa to all, I should know better than to click Send without checking the Fine Manual first. -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 12:16 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: 'ALLOCATE' a data set in my

P/390 Chassis' available

2005-12-08 Thread Gary Green
I have a couple of P/390 Server 330 chassis' (the chassis NOT the P/390 cards) available for anyone that's willing to stop on over to pick them up. We're cleaning out the closet and these are going. They are the 266 MHz version at least 256mb memory and they each include the sleds for the SCSI

Re: How to quickly shut down system

2005-12-08 Thread R.S.
Hal Merritt wrote: The more I think about this, the more I think less is better. Given the amount of time to fully understand the situation, find the procedure (which has never been tested), get a management buy in to pull the trigger, thoughtfully issue the correct commands in the correct

Modify command - lower case command text possible or not?

2005-12-08 Thread Dave McLellan
Hi: I've searched for a while in the archives and can't find any hits on a topic like this, although it's probably been discussed a few times before on this list. Using the MODIFY console command, command text appears to come through to the applicatinn (EXTRACT, QEDIT) folded to upper case. I

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Bruce Black
from the System Commands manual, You can enter operator commands in uppercase or lowercase. Unless enclosed in apostrophes, lowercase letters are converted to uppercase. Therefore, when a lowercase response is required, you must enclose the text in apostrophes. Also, when an apostrophe

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Dave McLellan Sent: Thursday, December 08, 2005 1:05 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Modify command - lower case command text possible or not? Hi: I've searched for a while in

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Chuck Arney
A quick test seems to show this is true for Modify commands entered through an MCS console. As John points out, the command string is received by the program with the quotes included so your command processor must be ready to strip them off. However, entering Modify commands through my SDSF

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Mark Zelden
On Thu, 8 Dec 2005 13:47:03 -0600, Chuck Arney [EMAIL PROTECTED] wrote: A quick test seems to show this is true for Modify commands entered through an MCS console. As John points out, the command string is received by the program with the quotes included so your command processor must be ready

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Chuck Arney Sent: Thursday, December 08, 2005 1:47 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Modify command - lower case command text possible or not? A quick test seems to show this is

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Chuck Arney
As usual, Mark comes up with the right answer. But that's a pain to have to use the extension panel when entering short commands. Why does one panel work differently than the other? Oh well, at least there IS a way to do it. Thanks for the solution. Chuck Arney illustro Systems International,

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Don Poitras
Chuck Arney wrote: A quick test seems to show this is true for Modify commands entered through an MCS console. As John points out, the command string is received by the program with the quotes included so your command processor must be ready to strip them off. However, entering Modify

64 Bit Application Gotchas

2005-12-08 Thread Kittendorf, Craig
Hi, We have a remote possibility of getting a z/890-104 next year. We are currently z/OS v1.4, CICS/TS 2.3, Enterprize COBOL 3.2 (soon 3.4), IMS 8.1, DB/2 7.1. I noticed we do have some VS COBOL programs that have not been compiled lately. Some assembler and even less C++. What kind of things

Re: How to quickly shut down system

2005-12-08 Thread Hal Merritt
I was once advised to cancel the IRLM address space. DB2 tends to abruptly drop in its tracks, but knows what to do to get back going again. Hal -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of R.S. Sent: Thursday, December 08, 2005 12:34 PM

Re: 64 Bit Application Gotchas

2005-12-08 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Kittendorf, Craig Sent: Thursday, December 08, 2005 2:54 PM To: IBM-MAIN@BAMA.UA.EDU Subject: 64 Bit Application Gotchas Hi, We have a remote possibility of getting a z/890-104 next

Re: C Compiler Limit/Bug?

2005-12-08 Thread Schiradin,Roland HG-Dir itb-db/dc
We had such a problem months ago but got CCN1107: Program too complex in function rg_sys. z/OS R4. Roland -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin White Sent: Thursday, December 08, 2005 5:40 PM To: IBM-MAIN@BAMA.UA.EDU

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Gerhard Adam
So, if you do not code a DISP on a DD statement then you will default to NEW which creates an EXCL enq on the data set if it is in use by another function. Once the function that allocated the file as default NEW ends, it sets the DELETE bit on the file. Then when all the other functions that

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 12/08/2005 at 03:14 PM, Luo Johnny [EMAIL PROTECTED] said: 1,In TSO,I use 'listalc status' to find that SYS1.UADS has been allocated to DDNAME 'SYSUADS'. For a test, I issue 'allocate dsn(center.uads) dd(sysuads)' and get the meesage that filename is in use. I

Re: Mainframe to Mainframe FTP

2005-12-08 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 12/07/2005 at 03:16 PM, Hal Merritt [EMAIL PROTECTED] said: This almost sounds like a network issue. I'd guess that it's using stream mode instead of record mode. Some misconfigured 'black hole' routers will silently drop packets or otherwise garble the data.

Re: AFP-l FAQ

2005-12-08 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 12/07/2005 at 10:28 AM, Ed Finnell [EMAIL PROTECTED] said: Don't know what the circumstances are that made afp-l use topica, but there is a good bit of developer involvement. I'm sure there are, just as there are some good resources in yahoo groups. But any time you

Re: Commands in JCL

2005-12-08 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 12/07/2005 at 02:13 PM, Steve Comstock [EMAIL PROTECTED] said: Is there a way to issue an operator command such as Start in a JCL COMMAND statement without causing the system to ask the console operator to allow it or not? At your shop or in general? There are several

Establishing a Cascaded Director Fabric

2005-12-08 Thread Michael Pratt
Hi, I was wondering if anyone has any experience in configuring a cascaded ficon fabric over a long distance network (supported by USD-x channel extenders). We are in the process of configuring (or trying to configure) the director (6140) at the remote site, but the link is not fully established

Re: Mainframe to Mainframe FTP

2005-12-08 Thread Paul Gilmartin
In a recent note, Shmuel Metz (Seymour J.) said: Date: Thu, 8 Dec 2005 11:29:52 -0500 Some misconfigured 'black hole' routers will silently drop packets or otherwise garble the data. Wouldn't TCP catch such? Most TCPs. Not necessarily IBM's. To be fair, they fix such bugs as

Re: How to quickly shut down system

2005-12-08 Thread ibm-main
From: Hal Merritt I was once advised to cancel the IRLM address space. DB2 tends to abruptly drop in its tracks, but knows what to do to get back going again. Never had it fail. Doesn't win popularity points with the DBAs though. Likewise, we have our CICS regions in STCJOBS; C CICS* works

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Chris Mason
I'm afraid I haven't been following this thread in detail but I see the discussion has turned to what the DISP operand of the DD statement does. In case it might be of interest, I'll pass on a trick I was told many years ago which I found very helpful with the sort of test or - as it seems to be

Re: SOAP for CICS

2005-12-08 Thread Bill Seubert
On Thu, 8 Dec 2005 07:30:46 -0600, Peter Ten Eyck [EMAIL PROTECTED] wrote: I was thinking more along the lines of securing what programs, tran ids or data sets can be run or accessed over this connection. I believe that in CICS V2, you must use HTTP basic authentication to pass a userid to CICS

Re: Mainframe to windows and windows to mainframe

2005-12-08 Thread Marian Gasparovic
Thiru, search archives. It was discussed here this week or a week before M. On 12/9/05, thirumurugan [EMAIL PROTECTED] wrote: Hi can any one knidly suggest me how do i submit jobs from windows to mainframe and get the SYSOUT back into windows. that is for example i have a jcl in

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Hunkeler Peter (KRDO 4)
I think what I should have said is the following: If you do not code DISP you get the following conditions DISP=(disp1,disp2,disp3) If disp1 is not coded it will default to NEW If disp2 is not coded it will default to DELETE for NEW or KEEP for OLD If disp3 is not coded it

Re: 'ALLOCATE' a data set in my TSO/E session

2005-12-08 Thread Hunkeler Peter (KRDO 4)
As for never, ever, no way, should anybody never, ever not use a DISP even if they want the default of NEW,DELETE, that is also not realistic since it is done routinely when allocating temporary work files like SORTWK and SYSUT1, etc. type files. It clearly doesn't make sense to code a

Re: Modify command - lower case command text possible or not?

2005-12-08 Thread Hunkeler Peter (KRDO 4)
That appears to be an artifact of SDSF. I noticed that ... It is not only an artifact of SDSF, it is an artifact of many elder ISPF applications. The default atttibute for input fields had CAPS(ON) as default, so everything entered there would be translated to upper case by ISPF's dialog manager