Re: INCLUDE group?

2023-02-21 Thread Radoslaw Skorupka
W dniu 21.02.2023 o 01:23, Paul Gilmartin pisze: In the JCL Ref. I read: Chapter 19. INCLUDE statement Purpose: Use the INCLUDE statement to: • Identify the name of the member of a partitioned data set (PDS) or partitioned data set extended (PDSE) that contains a set of JCL

An SDSF curiosity...

2023-02-21 Thread Sean Gleann
This isn't a 'problem' per se, just an observation that someone else may be able to shed some light on... In SDSF, the DA panel presentation can be modified using the 'View' option. For my logon id I have brought the column named 'Tran-Act' in to view, and then sorted the display so that Tran-Act

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread David Spiegel
Hi Brian, You said: "...so why would they question my use of anything I need in order to perform my job efficiently?  ..." My answer is that the people in charge are by-the-book mentality and I can imagine them using ISPF Panels for everything from RACF to SMP/e. (At one of my jobs, the MVS Team

Re: An SDSF curiosity...

2023-02-21 Thread Rob Scott
The SDSF "TranAct" column is based entirely on the R791TTOD field returned by ERBSMFI (which in turn is based on OUCBTMO). This 32-bit value contains the number of milliseconds since the "last transaction". The meaning of "last transaction" varies with the workload, so for some address spaces

Re: An SDSF curiosity...

2023-02-21 Thread Sean Gleann
Thanks, Rob - it all makes sense now. I tried to have a look at my type-79 data, only to find there isn't any being collected. It seems I have to set up RMF monitor II to collect that. Maybe I'll think about that later. Migration to z/OS 2.5 is something planned for later this year. Regards Sean

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Steve Thompson
Well, I finally figured out why the -3. And it is because LISTDSI as a function is not recognized as a command, hence -3 (which at least one of you was indicating). I wish to thank you all for your assistance and even code samples that are NOT what I'm working on. For clarity only, at this po

Re: INCLUDE group?

2023-02-21 Thread Paul Gilmartin
On Mon, 20 Feb 2023 23:06:44 -0500, Tony Harminc wrote: > >Maybe they're setting up to allow UNIX files. > I and co-workers have earnestly wished for mixed concatenations in STEPLIB. o To be able to execute the same program object both in JCL and OMVS. o To be able to direct "make" targets to STE

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Seymour J Metz
IMHO the root cause is that people see what they expect to see; hence the value of code and design reviews, where the code is read by a fresh pair of eyes with no expectations. I've often found that when I ask someone else for help and start explaining what the code is supposed to do, my view sh

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Steve Thompson
Oh I can't tell you how many times, working on an electrical problem, trying to fix something mechanical (car, motorcycle, airplane, etc.) and especially IT stuff (JOB streams, REXX, COBOL, ALC, conditional assembly, etc.) that explaining what you are doing to someone else That is what ma

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Paul Gilmartin
On Tue, 21 Feb 2023 15:51:23 +, Seymour J Metz wrote: >IMHO the root cause is that people see what they expect to see; hence the >value of code and design reviews, where the code is read by a fresh pair of >eyes with no expectations. ... > For the provider side, documentation should contain

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Doug
So David, you consider using ISPF panels a net negative? I used to write dialogs for anything repetitive that I or anyone else had to do. Never thought it was bad if "people in charge are by-the-book mentality and I can imagine them using ISPF Panels for everything from RACF to SMP/e." Especial

Re: An SDSF curiosity...

2023-02-21 Thread Rob Scott
SMF 79 records are handed back to a ERBSMFI caller-supplied buffer in contrast to the traditional “push” of SMFWTM/SMFEWTM, so you will not find them in the normal SMF record MANx or offload datasets. If you are using RMF, then 79-1 records will be returned even if RMF is not active (other subt

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread David Spiegel
Hi Doug, I consider relying on ISPF Panels *solely* negative, especially when SysProgs should learn the Command Line, in particular for RACF Commands. This is a sign of laziness. I've also been in jobs where I maintained/added to ISPF Applications to e.g. create a z/OS Clone, where the user fil

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Tom Brennan
Airplane?? In high-school I once helped replace a broken flap on a Piper Tri-pacer. The WW2 pilot then told me the repair guy always goes up for the test flight, which I did. One thing I use often is youtube, where it seems easy to find repair instructions for almost anything (like the truck

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Hobart Spitz
Steve wrote: >So the question of where LISTDSI is found is moot, in that my >environment is correct once using "CC = 'LISTDSI' ('SYSUT1 FILE')". The quotes around LISTDSI serve no function, unless you are inside a routine with the same name and you don't want recursion. Since the interpreter only

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Doug
Sorry, but I agree to disagree. The panels can have the effect of making staff FAR more efficient than learning command line TSO even for RACF. I can use them both, but I started in RACF way before there were any dialogs. Rather than "laziness" think efficiency. I prefer 3.2 to typing "allocate

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Wayne Bickerdike
I sit on the fence regarding command line vs ISPF panels. Command line can be a life saver if you screw up your logon procedure. I've seen many people use CONCAT type ISPF panels and add a load library to the source library ISP and boom. At that point, it's handy to understand the RENAME command o

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Seymour J Metz
imhoYou seem to be disagreeing with something he never wrote. Nobody here has argued against heavy use of ISPF panels. Nobody here has claimed that they don't use them heavily. The key word in David's reply, which he emphasized, was "solely". IMHO a systems programmer should know the tools at

Re: Q: Where is LISTDSI kept? A: Not where you think.

2023-02-21 Thread Paul Gilmartin
On Tue, 21 Feb 2023 11:56:43 -0600, Hobart Spitz wrote: >... >I prefer CALL LISTDSI "SYSUT1 FILE", which is almost the same as RESULT = >LISTDSI("SYSUT1 FILE"). IMHO, these examples in IBM documentation are >misleading and potentially can result in broken code. A CALLed routine is >NOT requir

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Robert Prins
On Tue, 21 Feb 2023 at 18:26, Wayne Bickerdike wrote: > I have a whole collection of handy ISPF panel driven utilities and use the > excellent Frank Clarke IMBED utilities. This makes them extremely portable, > everything in one piece of REXX code, no need to go looking for panels, > messages and

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Tom Brennan
I forgot what system it was (maybe a panel system on AIX?) where you can run through the panel selections checking various options, but with the ability to show the final command issued. I'm pretty sure things like RACF, RMM, and some other ISPF dialogs just issue TSO commands under the covers

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Seymour J Metz
Some submit jobs, and I've often scavenged the generated JCL to use as a basis for other jobs. But I'm always prepared to enter the JCL and input myself when appropriate. A good servant but a poor master. Same for CLI versus GUI; I find a GUI convenient for a lot of tasks but write scripts for

Re: [EXTERNAL] Re: How long for an experienced z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Pommier, Rex
I believe SMIT gave that option and I have often wished there was a similar function on z/OS with ISPF panels. Rex -Original Message- From: IBM Mainframe Discussion List On Behalf Of Tom Brennan Sent: Tuesday, February 21, 2023 1:58 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: [EXTERNAL]

Re: [EXTERNAL] Re: How long for an experienced z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Tom Brennan
That's it! Thanks for the reminder. On 2/21/2023 12:29 PM, Pommier, Rex wrote: I believe SMIT gave that option and I have often wished there was a similar function on z/OS with ISPF panels. Rex -Original Message- From: IBM Mainframe Discussion List On Behalf Of Tom Brennan Sent: Tu

Re: [EXTERNAL] Re: How long for an experienced z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread John Abell
You too thanks. John T. Abell Tel:800-295-7608Option 4 President International: 1-416-593-5578 Option 4 E-mail: john.ab...@intnlsoftwareproducts.com Fax:800-295-7609 International: 1-416-593-5579 International Software Products www.ispinfo.com

Re: How long for an experiened z/OS sysprog to come up to speed on a new environment?

2023-02-21 Thread Laurence Chiu
This particular organisation (a bank) doesn't allow anybody to attach USB sticks or download stuff. If you want to download from a non-recognised source you seek approval from the security team who assess the risk and then usually only open up the site for an hour or so for you to download the con

VS Pascal documentation on ibm.com?

2023-02-21 Thread Farley, Peter
I have access to a development z/OS system with the full VS Pascal product installed (not just the runtime library), and would like to experiment with it just for fun, but I cannot find any VS Pascal documentation anywhere on ibm.com. Even starting at ibm.com/docs fails with a timeout, though I

Re: VS Pascal documentation on ibm.com?

2023-02-21 Thread Mark Jacobs
Does this help? http://www.bitsavers.org/pdf/ibm/370/OS_VS/pascal/ Mark Jacobs Sent from ProtonMail, Swiss-based encrypted email. GPG Public Key - https://api.protonmail.ch/pks/lookup?op=get&search=markjac...@protonmail.com --- Original Message --- On Tuesday, February 21st, 2023 a

Re: VS Pascal documentation on ibm.com?

2023-02-21 Thread Mark Jacobs
Or this? http://www.bitsavers.org/pdf/ibm/370/OS_VS/vs_pascal/ Mark Jacobs Sent from ProtonMail, Swiss-based encrypted email. GPG Public Key - https://api.protonmail.ch/pks/lookup?op=get&search=markjac...@protonmail.com --- Original Message --- On Tuesday, February 21st, 2023 at 8:2

ibm.com/docs down ?

2023-02-21 Thread Hank Oerlemans
Just wondering if this is just OZ or global. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: ibm.com/docs down ?

2023-02-21 Thread Hank Oerlemans
BTW It's Wednesday 22nd 12:37PM Australian Eastern for timestamp purposes.posting via browser. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO I

Re: VS Pascal documentation on ibm.com?

2023-02-21 Thread Farley, Peter
Thanks Mark, I actually found those too after I posted my earlier request. Peter -Original Message- From: IBM Mainframe Discussion List On Behalf Of Mark Jacobs Sent: Tuesday, February 21, 2023 8:26 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: VS Pascal documentation on ibm.com? Or thi

Re: ibm.com/docs down ?

2023-02-21 Thread Farley, Peter
A private email pointed me to this location instead of ibm.com/docs: https://www.ibm.com/resources/publications And the VS Pascal docs I was looking for can be found there. Peter -Original Message- From: IBM Mainframe Discussion List On Behalf Of Hank Oerlemans Sent: Tuesday, February

Re: ibm.com/docs down ?

2023-02-21 Thread Hank Oerlemans
I have a 1978 hardcopy of Programming in Pascal, Peter Grogono. Where can I send it ? :-) -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAI

Re: ibm.com/docs down ?

2023-02-21 Thread Hank Oerlemans
After hunting about I found that IBM have noticed. I suppose it will be back after I finish for the day. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: I