Re: Typo in "Summary of changes"?

2023-05-17 Thread Seymour J Metz
The solution is to associate a date with a change bar. It's easy to do with "obsolete" markup languages like Script, not so much with WYSIAYG. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion

Re: VBS file read in windows - end of record issue

2023-05-16 Thread Seymour J Metz
The code with open('workfile', encoding="utf-8") as f: read_data = f.read() is for reading text and you would normally be concerned with the character count. Try with open('workfile', "rb") as f: read_data = f.read() From: IBM Mai

Re: Listing empty HLQs - LISTCAT?

2023-05-12 Thread Seymour J Metz
Well, sort of. Think of the master catalog as the officer of the day; essentially the same as other catalogs, but designated for a special role. There's also something called a multilevel alias (MLA), which you probably don't have to worry about. -- Shmuel (Seymour J.)

Re: Listing empty HLQs - LISTCAT?

2023-05-12 Thread Seymour J Metz
< https://www.ibm.com/docs/en/zos/2.2.0?topic=catalogs-catalog-search-interface-users-guide> From: IBM Mainframe Discussion List on behalf of Bob Bridges Sent: Friday, May 12, 2023 11:23 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Listing empty HLQs - LIST

Re: ispf , way to achieve the last ispf msgid from rexx

2023-05-11 Thread Seymour J Metz
This is killing a fly with a sledge hammer, but maybe Exit 15: DISPLAY service exit? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Weizman arbel [wwar...@gmail.com

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-11 Thread Seymour J Metz
THE UTF-8 transform of 'AC'X), but rather what various current interpreters expect. I believe that NetRexx supports a UTF-8 encoding of the source, but I was concerned with classic and OO flavors. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-11 Thread Seymour J Metz
'AC'X is not valid as the first octet of a UTF-8 sequence and the indicator is in the first octet, which must be one of 0xxx 110x 1110 0xxx 'AC'X is valid in the second, third or fourth octet. -- Shmuel (Seymour J.) Metz http://m

Re: Unlike data sets concatenation - revised 4

2023-05-11 Thread Seymour J Metz
A little hard to read without field names or at least offsets for each doubleword, but DCBOFLGS is a bit puzzling; I would have expected 08 and 18 where I see 0A and 1A. Could you post the code that works and the code that does not work? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu

Re: ispf , way to achieve the last ispf msgid from rexx

2023-05-11 Thread Seymour J Metz
Have you looked at ZERRMSG, ZERRSM, and ZERRL? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Weizman arbel [wwar...@gmail.com] Sent: Thursday, May 11, 2023 1:23 AM To

Re: XLC version? [was: RE: XLC - Weak symbols]

2023-05-10 Thread Seymour J Metz
Current versions of, e.g., bash, go, ooRexx, perl, python, ruby, rust, x11. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Farley, Peter [031df298a9da-dmarc-requ

Re: Can REXX OUTTRAP trap WTO's?

2023-05-10 Thread Seymour J Metz
It uses TPUT, but capturing the TPUT is only available if you are running under TSO Session Manager or RYO using the hooks for SM. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on

MVS/S* dates?

2023-05-10 Thread Seymour J Metz
Does anybody have announcement letters, or at least dates, for MVS/SE (5740-XE1) R1 and R2, MVS/SP V1 (5740-XYS, 5740-XYN) and MVS/XA? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 -- For IBM-MAIN subscribe

Re: Can REXX OUTTRAP trap WTO's?

2023-05-10 Thread Seymour J Metz
OUTTRAP is for messages written by PUTLINE and PUTGET; the TSO Session Manager can capture TPUT but there is no way to capture WTO directly. However, if you have the proper authorization (OP does not) then you can examine console messages with the CONSOLE facility. -- Shmuel (Seymour J

Re: Can REXX OUTTRAP trap WTO's?

2023-05-09 Thread Seymour J Metz
See the CONSOLE facility in TSO. I don't know whether it is available in System Rexx. From: IBM Mainframe Discussion List on behalf of Farley, Peter <031df298a9da-dmarc-requ...@listserv.ua.edu> Sent: Tuesday, May 9, 2023 1:30 PM To: IBM-MAIN@LISTSERV

Job: HLASM

2023-05-09 Thread Seymour J Metz
If anybody with a strong z/OS HLASM background is looking for a remote programming position, please contact me offline. Must be able to obtain a public trust clearance. -- For IBM-MAIN subscribe / signoff / archive access instruc

Re: JES2 Submitlib Bootstrap problem

2023-05-09 Thread Seymour J Metz
Yes, IBM absolutely should take startup sequence into account and should provide mechanisms to ensure that things occur in the proper order. This goes beyond OMVS. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion

Re: TSO IKJOPER question

2023-05-09 Thread Seymour J Metz
It is possible to process an assignment statement that you read as a subcommand; you just need to treat it as a special case instead of relying on IKJSCAN. Your code needs to recognize it as an assignment statement and pass the entire statement to IKJPARSE. -- Shmuel (Seymour J.) Metz http://mason.gm

Re: TSO IKJOPER question

2023-05-09 Thread Seymour J Metz
signment statements are special cases. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Joseph Reichman [reichman...@gmail.com] Sent: Tuesday, May 9, 2023 7:37 AM To: IBM-

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-09 Thread Seymour J Metz
No, I'm getting upset about trying to put words in my mouth; that's not something that is acceptable in Academia. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behal

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
t: Re: Logical Nor (¬) in ASCII-based code pages? Seymour J Metz wrote, in part: >You seem to be confirming what I wrote; if the locale is UTF-8 then >your character data should be UTF-8. The ¬ character in UTF-8 has a >different encoding from the ¬ character in Unicode, so there is no >is

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
You seem to be confirming what I wrote; if the locale is UTF-8 then your character data should be UTF-8. The ¬ character in UTF-8 has a different encoding from the ¬ character in Unicode, so there is no issue of a zero octet. '00AC'X is not a valid UTF-8 string. -- Shmuel (Seymou

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
Is charout() relevant in a Unicode context? AFAIK, you need to transform Unicode data with, e.g., UTF-8, For charout() to handle it. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
ambiguity. From: IBM Mainframe Discussion List on behalf of Phil Smith III Sent: Monday, May 8, 2023 11:01 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Logical Nor (¬) in ASCII-based code pages? Seymour J Metz wrote, in part: >> “AC” is meaningless in a Unico

Re: PUTLINE MULTLIN doesn't make a new line

2023-05-08 Thread Seymour J Metz
Why 0A? An EBCDIC NL is '15'x. TSO doesn't use LF as an end of line. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Joseph Reichman [reichman...@

Re: PUTLINE MULTLIN doesn't make a new line

2023-05-08 Thread Seymour J Metz
1. If you request output in storage, does each line end in '15'x (NL)? 2. What happens if you use an explicit TERMPUT=EDIT? Yes, that's supposed to be the default, but I'm grasping at straws here. -- Shmuel (Seymour J.) Metz http://m

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
re they the same users that think that, e.g., CP850 is ASCII? > I’m more than willing to believe in some code page with hex AA as the NOT > sign, just never seen it. See, e.g., <https://en.wikipedia.org/wiki/CP850#Character_set>. -- Shmuel (

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-08 Thread Seymour J Metz
Bookmarked. Thanks. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Phil Smith III [li...@akphs.com] Sent: Sunday, May 7, 2023 8:04 PM To: IBM-MAIN@LISTSERV.UA.EDU

Re: PUTLINE MULTLIN doesn't make a new line

2023-05-07 Thread Seymour J Metz
Please show your code. In particular, what is TERMPUT=? The term "unprintable" is vague; it depends on the particular character set and translation table. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion

RCF: z/OS 2.5 MVS Programming: Authorized Assembler Services Guide, SA23-1371-50

2023-05-07 Thread Seymour J Metz
list the environments that are allowed with TSO=YES, the default environment or how to issue a TSO command. I would guess that the later is ADDRESS TSO command, but it would be nice to have confirmation, -- Shmuel (Seymour J.) Metz http://mason.gmu.e

Re: Logical Nor (¬) in ASCII-based code pages?

2023-05-07 Thread Seymour J Metz
May 7, 2023 11:14 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Logical Nor (¬) in ASCII-based code pages? On Sun, 7 May 2023 13:27:16 +, Seymour J Metz wrote: >I've seen Logical Not (¬) at AA and at AC. Are there and ASCII-based code >pages that have it at a third position? Put anot

Logical Nor (¬) in ASCII-based code pages?

2023-05-07 Thread Seymour J Metz
I've seen Logical Not (¬) at AA and at AC. Are there and ASCII-based code pages that have it at a third position? Put another way, is there a third code point that ooRexx and Regina should recognize as ¬? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~s

Re: TSO command System Rexx

2023-05-07 Thread Seymour J Metz
it has at least two relevant meanings in that section :-( -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Paul Gilmartin [042bfe9c879d-dmarc-requ...@listserv.ua.edu] Se

Re: Z/OS port of Regina REXX

2023-05-05 Thread Seymour J Metz
Regina REXX On Fri, 5 May 2023 23:53:52 +, Seymour J Metz wrote: >I don't recall the details, but AA is '¬' on, e.g., CP852 and AC is '¬' on, >e.g., CP850. I see AA in both. Look like Windows box drawing code pages. ("not" i

Re: Z/OS port of Regina REXX

2023-05-05 Thread Seymour J Metz
ay 5, 2023 7:22 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Z/OS port of Regina REXX On Fri, 5 May 2023 22:25:09 +, Seymour J Metz wrote: >What code page are you using? What release of Regina? In some code pages Not >is 'AA'X, in others 'AC'X. In Unicode it's U+0

Re: Z/OS port of Regina REXX

2023-05-05 Thread Seymour J Metz
What code page are you using? What release of Regina? In some code pages Not is 'AA'X, in others 'AC'X. In Unicode it's U+00AC ('C2AC'X in UTF-8). From: IBM Mainframe Discussion List on behalf of Paul Gilmartin <042bfe9c879d-dmarc-requ...@listserv.ua

Re: COBOL to dynamic DD name

2023-05-05 Thread Seymour J Metz
How old is it? Does anybody still run with SWA below the line? From: IBM Mainframe Discussion List on behalf of rpinion865 <042a019916dd-dmarc-requ...@listserv.ua.edu> Sent: Friday, May 5, 2023 2:00 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: COBOL to d

Re: IBM RCF Documentation email address?

2023-05-04 Thread Seymour J Metz
Yes, and the "z/VM related PDFs" tab <https://www.vm.ibm.com/library/other.html> on the z/VM equivalent has a link to the current PoOps. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussio

Re: IBM-MAIN

2023-05-04 Thread Seymour J Metz
So why are you continuing this nonsense? Isn't it hypocritical to thank Darren and then ignore what he wrote? From: IBM Mainframe Discussion List on behalf of billogden Sent: Thursday, May 4, 2023 9:54 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: IBM-MA

Re: IBM-MAIN

2023-05-03 Thread Seymour J Metz
OTOH, it's nice to see that Darren is alive and kicking. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Matt Hogstrom [m...@hogstrom.org] Sent: Wednesday, May 3,

Re: IBM pauses some hiring amid plans to replace 7,800 jobs with AI

2023-05-02 Thread Seymour J Metz
3/5 From: IBM Mainframe Discussion List on behalf of Steve Thompson Sent: Tuesday, May 2, 2023 8:32 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: IBM pauses some hiring amid plans to replace 7,800 jobs with AI It is the government's job if it is based on

Re: REXX parse parens

2023-05-02 Thread Seymour J Metz
There is for TSO;/E REXX; I don't know about ooRexx or Regina. There is a regex class in ooRexx, but it's missing a lot. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on

Re: REXX parse parens

2023-05-02 Thread Seymour J Metz
Is there a REXX-aware PEG package? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of David Crayford [dcrayf...@gmail.com] Sent: Tuesday, May 2, 2023 9:55 AM To: IBM-MAIN

Re: REXX parse parens

2023-05-02 Thread Seymour J Metz
If you need more than ECMA Script regexen there's PCRE. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of David Crayford [dcrayf...@gmail.com] Sent: Tuesday, May 2,

Re: REXX parse parens

2023-05-02 Thread Seymour J Metz
It won't work for nested parentheses. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Jack Zukt [jzuk...@gmail.com] Sent: Tuesday, May 2, 2023 3:02 AM To: IBM

Re: REXX parse parens

2023-05-02 Thread Seymour J Metz
It's not difficult to write an assembler subroutine to parse and return the results in REXX variables. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Rupert Rey

Re: REXX parse parens

2023-05-01 Thread Seymour J Metz
PCRE is one option. There is also a package (XPARSE? XPROC?) that calls IKJPARSE. From: IBM Mainframe Discussion List on behalf of Frank Swarbrick Sent: Monday, May 1, 2023 7:30 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: REXX parse parens The following i

Re: RCF feedback [was: RE: Re: IBM RCF Documentation email address?]

2023-04-30 Thread Seymour J Metz
One feature that I would like to see on such a dashboard is the ability to upload sample source code or text along with a flag as to whether IBM should treat it as public or private. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM

Re: COBOL to dynamic DD name

2023-04-28 Thread Seymour J Metz
How many different files does he have? An equivalent to the PL/I FILE keyword would be more flexible than hard-wiring the ddnames at compile time. From: IBM Mainframe Discussion List on behalf of Sri h Kolusu Sent: Friday, April 28, 2023 4:59 PM To: IBM

Re: COBOL to dynamic DD name

2023-04-28 Thread Seymour J Metz
The OP isn't trying to retrieve the information; he's trying to open a file using a dynamic ddname. Put another way, he wants to open the same DCB multiple times, with a different DCBDDNAM each time. From: IBM Mainframe Discussion List on behalf of Sri

Re: COBOL to dynamic DD name

2023-04-28 Thread Seymour J Metz
Is PL/I an option at your shop? From: IBM Mainframe Discussion List on behalf of Schmitt, Michael Sent: Friday, April 28, 2023 4:29 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: COBOL to dynamic DD name I have an input file that contains thousands of rec

Re: Inexplicable 0C4!

2023-04-28 Thread Seymour J Metz
I would have said that it was unwise of IBM to overload ABEND S0C4 in OS/VS, but that once they had done so there was no graceful way to change it. From: IBM Mainframe Discussion List on behalf of Steve Smith Sent: Friday, April 28, 2023 1:25 PM To: IBM

Re: IBM RCF Documentation email address?

2023-04-28 Thread Seymour J Metz
when you need the books but don't have web access. On Fri, Apr 28, 2023 at 6:25 AM Seymour J Metz wrote: > Are you referring to KC web pages? What about manuals in PDF format? > > I've never had problems sending an RCF e-mail to the address in the manual. > > > -- &g

Re: Inexplicable 0C4!

2023-04-28 Thread Seymour J Metz
K3wl. Using R0 as R_1 reminds me of the BXH/BXLE trick for testing successive bits. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Robin Atwood [abend...@gmail.com

Re: IBM RCF Documentation email address?

2023-04-28 Thread Seymour J Metz
Are you referring to KC web pages? What about manuals in PDF format? I've never had problems sending an RCF e-mail to the address in the manual. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM

Re: Inexplicable 0C4!

2023-04-28 Thread Seymour J Metz
Set the initial length to the remaining bytes on the "page". After that, use the "page size". That leaves the question of how an unpriveleged program determines the "page size". Scare quotes because a 1 MiB "page" is actually a segment in the nomenc

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
Yikes! From: IBM Mainframe Discussion List on behalf of Michael Stein Sent: Thursday, April 27, 2023 5:09 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Inexplicable 0C4! On Thu, Apr 27, 2023 at 07:54:56PM +, Seymour J Metz wrote: > R1 is the ta

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
tein Sent: Thursday, April 27, 2023 3:07 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Inexplicable 0C4! On Thu, Apr 27, 2023 at 03:28:26PM +0000, Seymour J Metz wrote: > Is it possible that the string is in key 0 or read-only storage? It's a certainty for the whole string, but probably not for

Re: IPCS formatting of I/O control blocks

2023-04-27 Thread Seymour J Metz
ulder -Original Message- From: IBM Mainframe Discussion List On Behalf Of Seymour J Metz Sent: Thursday, April 27, 2023 8:28 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: IPCS formatting of I/O control blocks The last time I looked, IPCS did not format, e.g., DCB, DECB, IOB. Has that ch

Re: TSO Rexx C2X Incorrect Output

2023-04-27 Thread Seymour J Metz
I'm pretty sure that trace i would have sped up the problem resolution, as Walt suggested. From: IBM Mainframe Discussion List on behalf of Paul Gilmartin <042bfe9c879d-dmarc-requ...@listserv.ua.edu> Sent: Thursday, April 27, 2023 12:39 PM To: IBM-MA

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
Is it possible that the string is in key 0 or read-only storage? From: IBM Mainframe Discussion List on behalf of Michael Stein Sent: Thursday, April 27, 2023 11:19 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Inexplicable 0C4! On Thu, Apr 27, 2023 at

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
BC 1 seems to be correct. From: IBM Mainframe Discussion List on behalf of Joe Monk Sent: Thursday, April 27, 2023 10:47 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Inexplicable 0C4! "If the operation is completed with condition code 0, the contents of

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
No, but perhaps LGFI, avoiding the literal, would be better. From: IBM Mainframe Discussion List on behalf of Clifford McNeill <04cc09e1fcab-dmarc-requ...@listserv.ua.edu> Sent: Thursday, April 27, 2023 10:12 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: R

Re: Inexplicable 0C4!

2023-04-27 Thread Seymour J Metz
Is UPRX a full 256 bytes? From: IBM Mainframe Discussion List on behalf of Robin Atwood Sent: Thursday, April 27, 2023 8:58 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Inexplicable 0C4! I have had two of these during the course of two months, so it's getti

IPCS formatting of I/O control blocks

2023-04-27 Thread Seymour J Metz
The last time I looked, IPCS did not format, e.g., DCB, DECB, IOB. Has that changed? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Re: Unlike data sets concatenation - revised

2023-04-27 Thread Seymour J Metz
ASD; "logical record size" refers to either a segment of a physical record, or, for spanned records, a record constructed from a sequence of such segments, and the meaning of "record" depends upon context. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 __

Re: Unlike data sets concatenation - revised

2023-04-26 Thread Seymour J Metz
The DASD documentation uses the term record. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Paul Gilmartin [042bfe9c879d-dmarc-requ...@listserv.ua.edu] Sent

Re: Unlike data sets concatenation - revised

2023-04-26 Thread Seymour J Metz
Yes, but IBM would have given the same ABEND code had they done a READ CKD and compared. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Steve Thompson [ste

Re: Unlike data sets concatenation - revised

2023-04-26 Thread Seymour J Metz
There is a BUFL parameter, but it's not needed in this case; LRECL=max, BLKSIZE=max will do the job. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Charles

Re: Unlike data sets concatenation - revised

2023-04-26 Thread Seymour J Metz
DCBOFLGS='30'X=DCBOFEOV+DCBOFOPN DCBLRECL='C8'X=100 DCBBLKSI==3E8'X=1000 The OPEN exit needs to OIDCBOFLGS,DCBOFPPC From: IBM Mainframe Discussion List on behalf of Pierre Fichaud Sent: Wednesday, April 26, 2023 3:28 PM To: IBM-MAIN@LISTSE

Re: Unlike data sets concatenation - revised

2023-04-26 Thread Seymour J Metz
I'm pretty sure that there won't be any progress without the contents of the DCB at the time of failure; the current IOB might help. And if there is a SYNADAF, its output would also help. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 ___

Re: IKJPARS PCL/Parameters

2023-04-26 Thread Seymour J Metz
The drill is first do a scan, then a parse. If you're using TEST[AUTH] CP, then you are prompted for a complete command and that's what you should enter. The fact that you provided a member name doesn't change that. So TEST MYPDS(FOO) CP FOO 666 ASID(1) ... -- Shmuel (Seymou

Re: interfacing C with Rexx

2023-04-26 Thread Seymour J Metz
There is a port of PCRE, which has named captures. How hard would it be to port ooRexx 5.0, including glue code for existing applications? From: IBM Mainframe Discussion List on behalf of David Crayford Sent: Wednesday, April 26, 2023 1:44 AM To: IBM-

Re: IKJPARS PCL/Parameters

2023-04-26 Thread Seymour J Metz
The IKJIDENT looks okay although it would be easier to read if you broke it at a comma rather than at column 71. Please show the code that sets up IKJPARSE, starting at entry.. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM

Re: Unlike data sets concatenation

2023-04-25 Thread Seymour J Metz
the DCB at the time of ABEND? DCBOFPPC processing is older than DCBE. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Pierre Fichaud [pr...@videotron.ca] Sent: Tuesday,

Re: interfacing C with Rexx

2023-04-25 Thread Seymour J Metz
, but it's pretty straightforward. Regina comes with header files for C, so it shouldn't be any more difficult to write a Rexx-aware routine in C than it is in assembler. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM

Re: Edit commands without a macro?

2023-04-21 Thread Seymour J Metz
Or use TSO EDIT. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Sri h Kolusu [skol...@us.ibm.com] Sent: Friday, April 21, 2023 12:23 PM To: IBM-MAIN@LISTSERV.UA.EDU

Re: Z15 HMC Question

2023-04-21 Thread Seymour J Metz
> IMHO it is not related to the group. How is a question about the HMC on an IBM mainframe not related to IBM-MAIN? From: IBM Mainframe Discussion List on behalf of Radoslaw Skorupka <0471ebeac275-dmarc-requ...@listserv.ua.edu> Sent: Friday, April

Re: Edit commands without a macro?

2023-04-21 Thread Seymour J Metz
It's simple, but, IMHO, pointless. At the beginning of the macro, you test the current environment. If it's not ISREDIT, then call EDIT with an initial macro. From: IBM Mainframe Discussion List on behalf of Billy Ashton Sent: Friday, April 21, 2023 10:

Re: Using BSAM to witre a RACFM=VB dataset

2023-04-20 Thread Seymour J Metz
That's only relevant if you're using BDAM. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Binyamin Dissen [bdis...@dissensoftware.com] Sent: Thursday, April

Re: Images rather than etext

2023-04-17 Thread Seymour J Metz
There's also <https://en.wikipedia.org/wiki/The_Feeling_of_Power> and <https://www.mpoweruk.com/coal.htm> -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf

Re: Images rather than etext

2023-04-17 Thread Seymour J Metz
ObHolmesGinsbookDevice "International icons, equally unintelligible in every language" From: IBM Mainframe Discussion List on behalf of Farley, Peter <031df298a9da-dmarc-requ...@listserv.ua.edu> Sent: Monday, April 17, 2023 5:35 PM To: IBM-MAIN@LISTS

Re: JCL EXEC PARM= default?

2023-04-17 Thread Seymour J Metz
Sorry, that should be "That's not a GUPI." -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Seymour J Metz [sme...@gmu.edu] Sent: Saturday, April 15, 2

Re: What is "Mapped-I/O-addressing facility" in z16?

2023-04-16 Thread Seymour J Metz
CP support of Linux on Z? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Farley, Peter [031df298a9da-dmarc-requ...@listserv.ua.edu] Sent: Sunday, April 16, 2023 11

Re: JCL EXEC PARM= default?

2023-04-15 Thread Seymour J Metz
Sun, 16 Apr 2023 02:42:46 +0000, Seymour J Metz wrote: >I'm questioning "a program could determine that PARM was not specified". > ... which you said it could do by "scan[ning] the JCL or the internal text." >On Sun, 16 Apr 2023 02:01:10 +, Seymour J Metz wrote:

Re: JCL EXEC PARM= default?

2023-04-15 Thread Seymour J Metz
I'm questioning "a program could determine that PARM was not specified". -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Paul Gilmartin [042bfe9c

Re: JCL EXEC PARM= default?

2023-04-15 Thread Seymour J Metz
nderstand that all of the forms are equivalent. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Paul Gilmartin [042bfe9c879d-dmarc-requ...@listserv.ua.edu] Sent

Re: AI wipes out humanity?

2023-04-13 Thread Seymour J Metz
:artificial stupidity" - see GIGO. From: IBM Mainframe Discussion List on behalf of billogden Sent: Thursday, April 13, 2023 10:17 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: AI wipes out humanity? >If humans ever get so dependent on AI that they bli

Re: Specifhing the ENVBLOCK (was: Just PDSE)

2023-04-12 Thread Seymour J Metz
at 10:54 PM Seymour J Metz wrote: > "However, separate chains within a single address space are independent." > doesn't sound like a single chain. > > > From: IBM Mainframe Discussion List on behalf > of Paul Gilma

Re: What is BPXAS and how do I make them stop piling up?

2023-04-11 Thread Seymour J Metz
bject: Re: What is BPXAS and how do I make them stop piling up? Here is my entry in IEFJOBS: //BPXASJOB (SYSTEMS),'USS ADDRESS',MSGCLASS=Z //BPXASEXEC PROC=BPXAS,GETWORK=BPXPRJSR So, yes, IEFJOBS does work. Matthew On Tue, 11 Apr 2023 15:36:40 +0000, Seymour J Metz wrote:

Re: What is BPXAS and how do I make them stop piling up?

2023-04-11 Thread Seymour J Metz
ction of a proclib and output disposition. As usual, it's the sort of thing that I would look up in the logic manuals if they still existed. Lacking documentation, only a test will determine whether I guessed correctly. -- Shmuel (Seymour J.) Metz http://mason.gmu.e

Re: What is BPXAS and how do I make them stop piling up?

2023-04-10 Thread Seymour J Metz
What's in JOBCLASS(STC)? From: IBM Mainframe Discussion List on behalf of Steve Smith Sent: Monday, April 10, 2023 10:08 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: What is BPXAS and how do I make them stop piling up? Well, here's the real deal: //BPX

Re: AI wipes out humanity?

2023-04-10 Thread Seymour J Metz
Almost, it reflected things that the user wrote, but not always the most recent ones. That's part of what fooled people. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on beha

Re: ISPF usage question

2023-04-10 Thread Seymour J Metz
I don't know of any way to search them by content, but you can at least find them with, e.g., LOCATE FIRST NOTELINE .first .last -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.ED

Re: What is BPXAS and how do I make them stop piling up?

2023-04-10 Thread Seymour J Metz
BPXAS proc itself; in particular, I don't know whether the installation can provide a JOB card and accompanying // OUTPUT card for BPXAS in the IEFJOBS concatenation. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discu

Re: AI wipes out humanity?

2023-04-10 Thread Seymour J Metz
rg/wiki/ELIZA>, which fooled many people? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Phil Smith III [li...@akphs.com] Sent: Monday, April 10, 2023 4:15

Re: Not aging well (know-it-alls)

2023-04-10 Thread Seymour J Metz
Our disappointment in the events of the past half century is best discussed off-list. From: IBM Mainframe Discussion List on behalf of Bill Johnson <0047540adefe-dmarc-requ...@listserv.ua.edu> Sent: Monday, April 10, 2023 1:13 PM To: IBM-MAIN@LISTSER

Re: Specifhing the ENVBLOCK (was: Just PDSE)

2023-04-10 Thread Seymour J Metz
nday, April 9, 2023 5:16 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Specifhing the ENVBLOCK (was: Just PDSE) On Sun, 9 Apr 2023 20:41:33 +, Seymour J Metz wrote: >Curse you, OCO! > >I suspect that validating a potential ENVB address requires running a tree >rather than just a lis

Re: AI wipes out humanity?

2023-04-10 Thread Seymour J Metz
Or the chilling "The Humanoids" by Jack Williamson "To serve Man, and keep him from harm". From: IBM Mainframe Discussion List on behalf of Allan Staller <0387911dea17-dmarc-requ...@listserv.ua.edu> Sent: Monday, April 10, 2023 8:23 AM To: IBM-MAIN@L

Re: AI wipes out humanity?

2023-04-10 Thread Seymour J Metz
Wouildn't that depend on the programming and training? Some people lack an impulse to preserve themselves. Consider reckless behavior and suicide attempts. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion

Re: AI wipes out humanity?

2023-04-09 Thread Seymour J Metz
ome of the alternative pathways may also be horrifying. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Bill Johnson [0047540adefe-dmarc-requ...@listserv.ua.edu] Sent: Sunda

<    5   6   7   8   9   10   11   12   13   14   >