Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Seymour J Metz
14-dmarc-requ...@listserv.ua.edu> Sent: Wednesday, October 11, 2023 9:19 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF You might see if you can use IDCAMs to list the first 4k page of the PDS(e) in HEX and see what it looks like Sent from my iPhon

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Seymour J Metz
M-MAIN@LISTSERV.UA.EDU Subject: Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF There is one other option. Pull down PDS85 and see if anyone updated the software/source to support PDS(e)’s Sent from my iPhone No one said I could type with one thumb > On Oct 11, 2023, at 08:19, Ste

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Steve Beaver
There is one other option. Pull down PDS85 and see if anyone updated the software/source to support PDS(e)’s Sent from my iPhone No one said I could type with one thumb > On Oct 11, 2023, at 08:19, Steve Beaver wrote: > > You might see if you can use IDCAMs to list the first 4k page of the

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Steve Beaver
You might see if you can use IDCAMs to list the first 4k page of the PDS(e) in HEX and see what it looks like Sent from my iPhone No one said I could type with one thumb > On Oct 11, 2023, at 08:07, Matt Hogstrom wrote: > > Thanks for all the responses. So many ways to get what I needed. >

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Matt Hogstrom
Thanks for all the responses. So many ways to get what I needed. In my case, we wanted to grab the information to deliver back to the user via a REST API. * I wanted to stay in Java but would write something native to be called. * z/OSMF was an option but it created a hard / non-ubiquitous de

AW: [IBM-MAIN] Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread Beate Kawelke
Betreff: Re: [IBM-MAIN] Access to PDS(E) ISPF statistics outside of TSO/ISPF There is a sample assembler program in xephon magazine. Find it in the cbttape website ITschak בתאריך יום ג׳, 10 באוק׳ 2023 ב-21:46 מאת Matt Hogstrom : > Thanks Mike, this helps a lot. > > Matt Hog

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-11 Thread ITschak Mugzach
There is a sample assembler program in xephon magazine. Find it in the cbttape website ITschak בתאריך יום ג׳, 10 באוק׳ 2023 ב-21:46 מאת Matt Hogstrom : > Thanks Mike, this helps a lot. > > Matt Hogstrom > m...@hogstrom.org > +1-919-656-0564 > PGP Key: 0x90ECB270 > Facebook

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Lennie Dymoke-Bradshaw
J Metz Sent: 10 October 2023 20:45 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF Yes. Use DESERV to get the directory entry and look at the user data field. From: IBM Mainframe Discussion List on behalf o

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Kirk Wolf
With Java, the JZOS Toolkit has an interface to PDS directories, including MemberStatistics https://www.ibm.com/docs/en/sdk-java-technology/8?topic=SSYKE2_8.0.0/com.ibm.java.zsecurity.api.80.doc/com.ibm.jzos/overview-summary.htm Kirk Wolf Dovetailed Technologies http:// cozt

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Seymour J Metz
Yes. Use DESERV to get the directory entry and look at the user data field. From: IBM Mainframe Discussion List on behalf of Matt Hogstrom Sent: Tuesday, October 10, 2023 12:53 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Access to PDS(E) ISPF statistics

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Matt Hogstrom
Thanks Tom, I was hoping for a high level interface though something like jzos. Appreciate the pointer and I’ll create something. Matt Hogstrom m...@hogstrom.org +1-919-656-0564 PGP Key: 0x90ECB270 Facebook LinkedIn Twitter

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Matt Hogstrom
Thanks Mike, this helps a lot. Matt Hogstrom m...@hogstrom.org +1-919-656-0564 PGP Key: 0x90ECB270 Facebook LinkedIn Twitter “It may be cognitive, but, it ain’t intuitive." — Hogstrom > On Oct

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Mike Shaw
Matt, I have Assembler code to decode the ISPF stats once you have the directory entry in-hand. Here is the IBM mapping macro for the ISPF stats in a directory entry: MACRO ISPDSTAT , Macro from ISP.AISPMACS ISPF DLIB ISPFDIR DSECT ISPVERS DSX

Re: Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Tom Marchant
ISPF statistics are kept in the directory. You can read the directory entry with BLDL. Or read the directory directly and look for the entry. Directory blocks are 256 bytes. Mapping macro is IHAPDS. -- Tom Marchant On Tue, 10 Oct 2023 12:53:26 -0400, Matt Hogstrom wrote: >I’m looking for a w

Access to PDS(E) ISPF statistics outside of TSO/ISPF

2023-10-10 Thread Matt Hogstrom
I’m looking for a way to access ISPF statistics from Java or C outside of a TSO / ISPF environment. Does such an animal exist out there ? Matt Hogstrom m...@hogstrom.org “It may be cognitive, but, it ain’t intuitive." — Hogstrom