Re: What is the PDS command?

2023-12-15 Thread Roger Bolan
It's all built into ISPF nowadays. I would suggest that it is worth your time to go through the ISPF Tutorial every time you get a new release. On my systems the main ISPF panel has an option 11 for Workplace ISPF Object/Action Workplace. You can also get to by the ISPF command DSLIST. You

Re: What is the PDS command?

2023-12-15 Thread Paul Feller
Greetings Bob, I was looking through my old JCL library and ran across several examples of scans using ISRSUPC. Depending on what you want to do you could try ISRSUPC. If you have access to JOBSCAN you could try it. If you client has DAF, you can use that to scan SMF records to see if any

Re: What is the PDS command?

2023-12-15 Thread John Pratt
Hi Bob, If I remember correctly =3.14 has a batch option and you can concatenate all your JCL libraries into the generated job. John. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Bob Bridges Sent: Saturday, 16 December 2023 8:55 AM To: IBM-MAIN@LISTSERV.UA.EDU

Re: What is the PDS command?

2023-12-15 Thread Farley, Peter
Does your current location have any ISV alternative like CA/Brightcom FileMaster or other competitors? Or even the IBM FileMaster (which is probably search via SuperC under the covers anyway)? Peter From: IBM Mainframe Discussion List On Behalf Of Bob Bridges Sent: Friday, December 15, 2023

Re: What is the PDS command?

2023-12-15 Thread Paul Gilmartin
On Fri, 15 Dec 2023 13:58:51 -0800, Ed Jaffe wrote: >... >The ISPF/HLASM SUPERC search function, available natively in z/OS, might >be a good alternative... > Some documentation here: -- gil

Re: What is the PDS command?

2023-12-15 Thread Ed Jaffe
On 12/15/2023 1:55 PM, Bob Bridges wrote: But what's the PDS command? I've a strong suspicion that I wrote this at a client that had a popular CBTTAPE utility, and if so it's not appropriate for my current location. Can someone confirm? Yes, the PDS command is excellent "shareware" that does

Re: What is the PDS command?

2023-12-15 Thread Sri h Kolusu
>> But what's the PDS command? I've a strong suspicion that I wrote this at a >> client that had a popular CBTTAPE utility, and if so it's not appropriate >> for my current location. Can someone confirm? ISPF has SRCHFOR which can be issued from DSLIST (3.4)

What is the PDS command?

2023-12-15 Thread Bob Bridges
Long ago I wrote - I'm pretty sure I wrote - a REXX exec that would do a 3.14 search through multiple libraries for a character string. I'm looking for it now, and I find one in my archives that uses the PDS command to do the search. But what's the PDS command? I've a strong suspicion that I

Re: SMP/E question of the day

2023-12-15 Thread Kurt Quackenbush
>> name ABCPROC#C is 9 characters. > Right, but that's the generated name-the module is ABCPROC, written in C. How > does one get around this? As a circumvention you can create a ++MOD to replace the entire module instead of using a ++ZAP to zap the load module. If you require SMP/E to

Re: Can this be done?

2023-12-15 Thread Tony Harminc
On Thu, 14 Dec 2023 at 18:39, Lennie Dymoke-Bradshaw <032fff1be9b4-dmarc-requ...@listserv.ua.edu> wrote: > I would have said use EXCP until recently. In addition you would need to be > APF authorised in order to open VSAM datasets using EXCP. > However, I understand however that there are

Re: Can this be done?

2023-12-15 Thread Matt Hogstrom
As with many things on z/OS the simple can be complicated. I would have thought a simple open of a dataset overriding with RECFM U would have at least allowed you to read a block at a time. Nice idea. Matt Hogstrom m...@hogstrom.org +1-919-656-0564 PGP Key: 0x90ECB270 Facebook

Re: Can this be done?

2023-12-15 Thread Billy Ashton
Ok, it looks like my plan to read any type of file is not going to be as simple as I thought. I guess I will abandon that for now, as it was just going to be a learning exercise to see if we could have a single program open and read data from any disk filetype. I will stop thinking now, and

Re: Looking for COBOL SYSADATA record layouts

2023-12-15 Thread Charles Mills
+1 Not the solution to my problem today, however. CM On Fri, 15 Dec 2023 11:30:28 -0600, Paul Gilmartin wrote: >On Fri, 15 Dec 2023 10:37:56 -0600, Charles Mills wrote: > >>I am looking for compiler-readable record layouts ... >> >>Source language, in order of descending preference, would be

Re: Looking for COBOL SYSADATA record layouts

2023-12-15 Thread Paul Gilmartin
On Fri, 15 Dec 2023 10:37:56 -0600, Charles Mills wrote: >I am looking for compiler-readable record layouts ... > >Source language, in order of descending preference, would be C header, >Assembler DSECT, or anything else. > I see a need for a universal data format specification language

Re: Can this be done?

2023-12-15 Thread Schmitt, Michael
Disk Browse and Disk Print show the raw track data. There's no interpretation by FM. You just can't use it on a PDSE -- and that's not a bug, it is BAD (Broken As Designed). -Original Message- From: IBM Mainframe Discussion List On Behalf Of Paul Gilmartin Sent: Friday, December 15,

Re: SMP/E question of the day

2023-12-15 Thread Paul Gilmartin
On Fri, 15 Dec 2023 11:53:03 -0500, Phil Smith III wrote: > >Right, but that's the generated name-the module is ABCPROC, written in C. How >does one get around this? As Gil suggests, this seems like an SMP/E >bug/failing. > I'll generalize: It's improper for middleware, in this case SMP/E, to

Re: SMP/E question of the day

2023-12-15 Thread Phil Smith III
Kurt Quackenbush wrote, re: >> NAME ABCDITSK ABCPROC#C C_CODE >I believe SMP/E supports a maximum of 8 characters for the LMOD, >CSECT, and CLASS names specified on the IMASPZAP NAME statement. CSECT >name ABCPROC#C is 9 characters. Right, but that's the generated name-the module is

Re: Can this be done?

2023-12-15 Thread Mike Shaw
We use EXCP for the I/O to our DB and when customers incorrectly allocate it as an extended format DS we fail with a S213-B8: B8An OPEN was attempted against an extended-format data set with a DCB that specified EXCP. EXCP is not supported for extended-format data sets. Mike Shaw MVS/QuickRef

Looking for COBOL SYSADATA record layouts

2023-12-15 Thread Charles Mills
I am looking for compiler-readable record layouts for Enterprise COBOL SYSADATA. I see the human-oriented record descriptions in the Programming Guide. I see the sample exit program in IGYxxx.SAMPLIB(ADEXIT), which contains (very) partial record layouts. I have searched SYS1.SIEAHDR.H. I have

Re: Can this be done?

2023-12-15 Thread Paul Gilmartin
On Fri, 15 Dec 2023 16:07:04 +, Schmitt, Michael wrote: >I wonder if this explains why IBM File Manager doesn't allow Disk Browse or >Disk Print on PDSEs -- maybe their code using EXCP and they didn't want to >change it to use media manager. > I believe the PDSE raw data format is not a

Re: Can this be done?

2023-12-15 Thread Schmitt, Michael
I wonder if this explains why IBM File Manager doesn't allow Disk Browse or Disk Print on PDSEs -- maybe their code using EXCP and they didn't want to change it to use media manager. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Lennie Dymoke-Bradshaw Sent:

Re: SMP/E - Pointing Existing TARG & DLIB Zones To New CSI's

2023-12-15 Thread Ross Vaughn
Thanks Kurt. This will be helpful as well. Ross > On Dec 15, 2023, at 9:52 AM, Kurt Quackenbush wrote: > >  >> >> If he clones the existing target and dlib zones, updates the DDDEFs and >> receives the new version, will SMPE try to delete the old FMID and/or the >> contents of the

Re: SMP/E - Pointing Existing TARG & DLIB Zones To New CSI's

2023-12-15 Thread Kurt Quackenbush
> If he clones the existing target and dlib zones, updates the DDDEFs and > receives the new version, will SMPE try to delete the old FMID and/or the > contents of the existing libraries? Typically a new release of a product does delete the prior releases. If you are careful to update all

Re: Can this be done?

2023-12-15 Thread Adam Johanson
> Is FAMS-level I/O publicly documented, or only for NDA+$? NDA+$ I think a first-born child was also involved. === Adam Johanson Broadcom Mainframe Software Division -- For IBM-MAIN

Re: CSVQUERY in ARR routine return code 8 didn't have PLISTVER=MAX On CSVQUERY LIST VERSION THANK YOU

2023-12-15 Thread Joseph Reichman
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Rob Scott Sent: Friday, December 15, 2023 3:25 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: CSVQUERY in ARR routine return code 8 Joe A couple of things that might help : (o) Have you correctly told the CSVQUERY macro

Re: CSVQUERY in ARR routine return code 8

2023-12-15 Thread Joseph Reichman
Robb I tried the CSVQUERY with the INEPNAME param ( the load module name of the PC rtn ) and it returned the correct info I didn’t code sysstate as I’m not in AR mode Justice PASN not eq HASN as it’s the recovery for a space switching PC rtn The inaddr parm I have it pointing to the actual

Re: CSVQUERY in ARR routine return code 8

2023-12-15 Thread Rob Scott
Joe A couple of things that might help : (o) Have you correctly told the CSVQUERY macro about the environment via SYSSTATE so that it generates the correct parameter list? (o) Have you tested it with a known-good LPA address (or module name like "IEFBR14") to ensure that you have the basic