Re: EAV bug or feature?

2016-05-10 Thread Barbara Nitz
Tom, >I'll be covering this in the Bit Bucket at SHARE in Atlanta. Thanks for >giving me some more information about this. If you go to zTechU in >Munich, I'm presenting there, so please look me up. I had planned on it when I saw your name on the roster... Barbara

RFE for new SMPP support in zOS

2016-05-10 Thread Tim Hare
After discussion at SHARE, I created an RFE (back in March... sorry for the late notice, but life happened and I forgot about it) to add support for the SMPP (Short Message Peer-to-Peer) protocol, for outbound messages. This is the protocol used to communicate the the servers that support the

Re: Captue Point for SNA applications

2016-05-10 Thread Tim Hare
Levi, Ray, and Shoup's product VPS (Virtual Print) has a component named DRS which does what I think you want - it captures print that CICS or IMS thinks is going to LU1/LU3, and puts the info on the spool. VPS could then print it. CASI has a product named CICS2PDF which can create output as

Re: SMP/E Feature?

2016-05-10 Thread Paul Gilmartin
On Wed, 11 May 2016 09:27:25 +1000, Andrew Rowley wrote: >On 11/05/2016 1:15, Mark Zelden wrote: >> Since multiple levels of the >> OS are being maintained I "APPLY REDO" pointing to a copy of the SMP/E >> controlled loadlib using the proper level of the JES2 macro library. It >> makes little

Re: SMP/E Feature?

2016-05-10 Thread Andrew Rowley
On 11/05/2016 1:15, Mark Zelden wrote: Since multiple levels of the OS are being maintained I "APPLY REDO" pointing to a copy of the SMP/E controlled loadlib using the proper level of the JES2 macro library. It makes little sense (at least to me) to run one apply, change the dddef, then run

Re: Assembler ATTACHing C

2016-05-10 Thread David Crayford
You're using SPC so you need to use __xregs() to access the plist. argc and argv are not supported in that environment. Why do you use SPC? Have you got a hard requirement not to use LE? > On 11 May 2016, at 4:57 AM, Pierre Fichaud wrote: > > I have an assembler program

Re: EAV bug or feature?

2016-05-10 Thread Ron Hawkins
All, As with SDB, I have a catch all DATACLAS that assigns EATTR=OPT to everything that hasn't been assigned another DATACLAS. Ron -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Mike Schwab Sent: Tuesday, May 10, 2016 1:22 PM To:

Re: Assembler ATTACHing C

2016-05-10 Thread Charles Mills
Somebody has to parse R1->length+data if you expect argc and argv[]. If you tell C not to do it then who is going to do it? You could also take a look at __R1 if you want to do this yourself. It is somewhere obscure -- in the L/R perhaps. Charles -Original Message- From: IBM Mainframe

Re: Assembler ATTACHing C

2016-05-10 Thread Farley, Peter x23353
Doesn't the NOSTART compiler option prevent the "normal" C startup code (CEESTART) from being generated, and thus makes you provide your own startup logic? Does your C "main" provide that logic for itself? I also notice you are using Systems Programming C with (DEF(USE_SPC), so that means you

Re: Assembler ATTACHing C

2016-05-10 Thread Charles Mills
There is a section in the P/G dealing with calling C from assembler. It makes a difference whether the assembler code is LE-enabled or not, and if not, whether you want to build the LE environment yourself or let C do it by default. Also whether the C is XPLINK or not. Charles -Original

Assembler ATTACHing C

2016-05-10 Thread Pierre Fichaud
I have an assembler program that creates a sub-task using ATTACHX. It sets up a parameter list, pointed to by R01, for the sub-task. The C code is a main program and so has main (int argc, char *argv[]) It has #pragma environment(main) The program is compiled with

Dynamic CPU ADD to a z/OS lpar

2016-05-10 Thread Richards, Robert B.
I am in the middle of a CBU test and was wondering if it is possible on z/OS yet to dynamically add (config or otherwise) a CP or two to an lpar *without* that partition already having any specified as reserved in their activation profile. A friend said yes, but I was unable locate how using

Re: EAV bug or feature?

2016-05-10 Thread Mike Schwab
I often use this clist for Non-SMS recalls. 2 DSLIST xx.CLIST(HRECN) - 01.00Columns 1 00072 +1+2+3+4+5+6+7-- * Top of Data ** PROC 2 D V CONTROL PROMPT

Re: SMP/E Feature?

2016-05-10 Thread Mike Schwab
I recall recent versions of JES2 required changes to a couple of exits, or changing exit numbers. Definitely need multiple source libraries for these changes. On Tue, May 10, 2016 at 10:15 AM, Mark Zelden wrote: > I never responded / commented on Andrew's post, but since you

Re: Strange out out from OBTAIN

2016-05-10 Thread michelbutz
Thanks Sent from my iPhone > On May 10, 2016, at 3:36 PM, Gerhard Postpischil wrote: > >> On 5/10/2016 2:18 PM, michelbutz wrote: >> Using an example in the DFSSMS advanced services guide I got strange >> output from OBTAIN With CAMLST >> >> OBTAIN DSCB DSCB. CAMLST

Re: Strange out out from OBTAIN

2016-05-10 Thread Gerhard Postpischil
On 5/10/2016 2:18 PM, michelbutz wrote: Using an example in the DFSSMS advanced services guide I got strange output from OBTAIN With CAMLST OBTAIN DSCB DSCB. CAMLST SEARCH,DSABC,VOL,WORKAREA DSABC. DC. CL44'data.set.name' VOL. DC. CL6'VOLSER' WORKAREA DS CL140 Register 15 returned

Re: Dataset space information

2016-05-10 Thread John Eells
Without getting buried in the details of the F1DSCB (the format of which, as far as I know, matches the book's layout precisely and has for decades), *what* are you trying to find out *about* a data set? - What size it is and the units used for allocation? - How many extents it's in? - Other

Re: Dataset space information

2016-05-10 Thread John McKown
On Tue, May 10, 2016 at 2:02 PM, michelbutz wrote: > I would assume a layout of DSCB format 1 didn't quite match up to the > documentation > Specifically the volser followed the DSN followed by a '1' I assume for > format 1 DSCB for by the volser again > ​Where did you

Re: EAV bug or feature?

2016-05-10 Thread Tom Conley
On 5/10/2016 1:53 PM, nitz-ibm wrote: One of the things I found appalling is that there is not a single example of how to allocate an EAV dataset in the cylinder-managed space anywhere in any IBM doc. You can find EATTR=OPT if you know to look for it, but do a search on how to allocate an EAV

Re: Dataset space information

2016-05-10 Thread michelbutz
I would assume a layout of DSCB format 1 didn't quite match up to the documentation Specifically the volser followed the DSN followed by a '1' I assume for format 1 DSCB for by the volser again Sent from my iPhone > On May 10, 2016, at 2:52 PM, John Eells wrote: > > What

Re: Dataset space information

2016-05-10 Thread John Eells
What information are you trying to get, exactly? michelbutz wrote: Hi I need to obtain dataset space information -- John Eells IBM Poughkeepsie ee...@us.ibm.com -- For IBM-MAIN subscribe / signoff / archive access

Re: Strange out out from OBTAIN

2016-05-10 Thread John McKown
This page may help: http://www.ibm.com/support/knowledgecenter/api/content/SSLTBW_2.2.0/com.ibm.zos.v2r2.idas300/s3013.htm?locale=en The XL3 is _binary_ composed of two fields: XL1'YY' & XL2'DDD'. Example: **CCHHR- 000105 RECORD LENGTH- 8C 00 E3C3 D7C9 D74B E2C5 D9E5 C9C3

Strange out out from OBTAIN

2016-05-10 Thread michelbutz
Hi Using an example in the DFSSMS advanced services guide I got strange output from OBTAIN With CAMLST OBTAIN DSCB DSCB. CAMLST SEARCH,DSABC,VOL,WORKAREA DSABC. DC. CL44'data.set.name' VOL. DC. CL6'VOLSER' WORKAREA DS CL140 Register 15 returned a zero WORKAREA pointed to

Re: IBM secure z/OS software delivery: Don't get locked out!

2016-05-10 Thread nitz-ibm
Kurt, we do have a problem with https download because the certificate we have is for one part of the website, but the test adds a 01 inside, and the corporate firewall objects to that (I am currently home so I cannot name the full url). When we manually remove the 01 in the url, we are able

Re: EAV bug or feature?

2016-05-10 Thread nitz-ibm
> One of the things I found appalling is that there is not a single > example of how to allocate an EAV dataset in the cylinder-managed space > anywhere in any IBM doc. You can find EATTR=OPT if you know to look for > it, but do a search on how to allocate an EAV dataset. Nothing. When I

Re: SMP/E Feature?

2016-05-10 Thread Blake, Daniel J [CTR]
I too use DDDEFs. I always run APPLY CHECK and ACCEPT CHECK and verify volsers and PATHs. F 'DATA SET OR PATH' eliminates any embedded volser/path from the REASON REPORT section. That way if I'm out of the office for an extended period of time and some SMP/E work needs to be done people

Re: SMP/E Feature?

2016-05-10 Thread Jesse 1 Robinson
I'm a firm believer in DDDEFs. In addition to the compelling reasons offered by Mark Zelden, DDDEFs make a product 'self-contained', a quality that can be invaluable to a person who has to pick up the product after the original installer/maintainer has left the fold. Trying to find all the

Re: SMP/E Feature?

2016-05-10 Thread Mark Zelden
I never responded / commented on Andrew's post, but since you brought the subject up again I will. I always use DDDEFs unless some products install / maintenance procedures don't include adding DDDEFs and the vendor supplies an SMP/E PROC or JCL with all the DDs in them instead. Even then

Re: EAV bug or feature?

2016-05-10 Thread Ed Jaffe
On 5/10/2016 7:30 AM, Tom Conley wrote: I suspect you'll have better luck if you search for EAS. Unfortunately, that overloaded acronym is also a VTAM term, so you might want to use something like "EAS data set" or "data set EAS" instead. I ran many different searches trying to find this

Re: IBM secure z/OS software delivery: Don't get locked out!

2016-05-10 Thread John Eells
John Eells wrote: Gibney, David Allen wrote: If you look back a bit in IBM-MAIN this year, you will find the thread where I also had missed ordering these FMIDs with z/OS 2.1 IBM was able to send me (via DVD) an z/OS 2.1 order which did contain them. And I was able to use BUILDMCS to extract

Re: EAV bug or feature?

2016-05-10 Thread Tom Conley
On 5/10/2016 10:26 AM, Ed Jaffe wrote: On 5/10/2016 6:59 AM, Tom Conley wrote: You can find EATTR=OPT if you know to look for it, but do a search on how to allocate an EAV dataset. Nothing. There is no such thing as an EAV data set. EAV is a type of volume with both track-managed and

Re: EAV bug or feature?

2016-05-10 Thread Ed Jaffe
On 5/10/2016 6:59 AM, Tom Conley wrote: You can find EATTR=OPT if you know to look for it, but do a search on how to allocate an EAV dataset. Nothing. There is no such thing as an EAV data set. EAV is a type of volume with both track-managed and cylinder-managed areas. The cylinder-managed

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Tom Conley
On 5/10/2016 8:55 AM, Roach, Dennis wrote: You need to read the entire message. There is an application programmer response section that says If you expect the target data set to be SMS-managed, ensure the ACS routine assigns a storage class or use the BYPASS ACS and STORCLAS

Re: EAV bug or feature?

2016-05-10 Thread Tom Conley
On 5/10/2016 3:04 AM, Tom Conley wrote: On 5/10/2016 1:23 AM, Pinnacle wrote: FYI, I allocated a non-SMS EAV on my system with 111300 cylinders. I try to run three jobs with SPACE=(CYL,(1,5000),RLSE),DSNTYPE=LARGE. The first job runs, the other two fail with IEF257I SPACE REQUESTED NOT

Re: CSA Shrank in DR

2016-05-10 Thread John Eells
phil yogendran wrote: Thank you very much, all. You have been most helpful. I have run into this problem before so I need to spend more time on it. All of your suggestions and recommendations will help me get to the bottom of it. Much appreciated. Some time ago, I wrote a post about setting

Re: IBM secure z/OS software delivery: Don't get locked out!

2016-05-10 Thread John Eells
Gibney, David Allen wrote: If you look back a bit in IBM-MAIN this year, you will find the thread where I also had missed ordering these FMIDs with z/OS 2.1 IBM was able to send me (via DVD) an z/OS 2.1 order which did contain them. And I was able to use BUILDMCS to extract them and then

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Leopold Strauss
Thx again. I think, I would know, what to do. But obviously it might be difficult to tell it to our customer, because we do not know anything about his configuration or about the knowhow of his employee concerning SMS. Additionally I asked our local IBM-representatives, because there

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Roach, Dennis
I would think it very possible. Forcing the storage group, as defined in the response, could be a valid option. Non SMS managed storage could also be valid. Dennis Roach, CISSP, PMP IAM Access Administration – Consumer – Senior Analyst 2929 Allen Parkway, America Building, 3rd Floor, Houston,

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Leopold Strauss
Oops, thx, you are right. I only read the explanation, but not the 'prgrammess response'. Could it be, that customer' prefix NEW ( in reality it is another one) somehow is not correctly defined in SMS ? Leo On 10.05.2016 14:55, Roach, Dennis wrote: You need to read the entire message.

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Leopold Strauss
Many thx, John. it is not my JCL, but a JCL distriibuted to all our IBM-customer's, and obviously only that one customer has a problem. Leo On 10.05.2016 14:55, John McKown wrote: On Tue, May 10, 2016 at 7:35 AM, Leopold Strauss < leopold.stra...@isis-papyrus.com> wrote: Hi, all, A

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread John McKown
On Tue, May 10, 2016 at 7:35 AM, Leopold Strauss < leopold.stra...@isis-papyrus.com> wrote: > Hi, all, > > A customer from my company gets following error-message during restore of > a ADRDSSU-dump-dataset: > > *ADR472E (001)-NEWDS(06), UNABLE TO SELECT A TARGET VOLUME FOR DATA SET > xx.yy.zz,

Re: ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Roach, Dennis
You need to read the entire message. There is an application programmer response section that says If you expect the target data set to be SMS-managed, ensure the ACS routine assigns a storage class or use the BYPASS ACS and STORCLAS keywords to force the data set to

ADRDSSU-errormessage ADR472E with code 72

2016-05-10 Thread Leopold Strauss
Hi, all, A customer from my company gets following error-message during restore of a ADRDSSU-dump-dataset: *ADR472E (001)-NEWDS(06), UNABLE TO SELECT A TARGET VOLUME FOR DATA SET xx.yy.zz, *72*).* The explanation for 72 is: *During a non-SMS allocation, no target volumes were available

Re: IBM secure z/OS software delivery: Don't get locked out!

2016-05-10 Thread Kurt Quackenbush
On 5/9/2016 9:51 AM, vern wrote: Thanks very much for that info Kurt. I've checked we have the PTF's identified in APAR IO20858, but for some reason I am unable to find APAR IO22236. Any ideas ? Well, err, ummm, yes I have a pretty good idea -- we've got a typo in our doc! The correct APAR

Re: EAV bug or feature?

2016-05-10 Thread Tom Conley
On 5/10/2016 1:23 AM, Pinnacle wrote: FYI, I allocated a non-SMS EAV on my system with 111300 cylinders. I try to run three jobs with SPACE=(CYL,(1,5000),RLSE),DSNTYPE=LARGE. The first job runs, the other two fail with IEF257I SPACE REQUESTED NOT AVAILABLE, on the EAV when it has 9