Re: JES2 NOTIFY EMAIL=

2023-11-01 Thread Donald Russell
gt; > Why is it so difficult to find the manual? > > -- > Tom Marchant > > On Wed, 1 Nov 2023 13:22:51 -0700, Donald Russell > wrote: > > >New in zOS 2.3 is the NOTIFY statement. > >//label NOTIFY EMAIL= > > > >I code that in my job but never get an

JES2 NOTIFY EMAIL=

2023-11-01 Thread Donald Russell
New in zOS 2.3 is the NOTIFY statement. //label NOTIFY EMAIL= I code that in my job but never get an email. I assume something has to be configured to tell JES where the email server is, but our sysprog has “scoured the manuals and can’t find anything”. Any clues? Thank you, Don --

Re: Password Resets

2022-08-17 Thread Donald Russell
I implemented a web page on VM that uses a corporate single sign on and one-time password server that acts as a proxy. If you come to my password reset page the wrong way, it redirects the browser to the SSO page. Once authenticated that proxy adds some useful headers to the https request. When m

Re: The Great Resignation

2022-01-28 Thread Donald Russell
Bernie Madoff was a fiduciary. Laws don’t make people ethical. On Sat, Dec 18, 2021 at 15:49 Bill Johnson < 0047540adefe-dmarc-requ...@listserv.ua.edu> wrote: > Always go with an financial advisor who is a fiduciary. They are obligated > by law to do what’s best for you the investor. > > > Se

JES “end of response” marker

2020-03-17 Thread Donald Russell
I can issue some JES commands through RSCS from a VM system. Is there a way to tell JES (zOS 2.4) to send a “end of response” message? Example: I can query RSCS and know when the end of the asynchronous response is. CP SMSG RSCS (MT.) QUERY LINKS the (..) modifier tells RSCS to format the respo

Re: Using bpxbatch to compress an MVS dataset

2019-07-01 Thread Donald Russell
ss the file during transmit only. > > -Original Message- > From: IBM Mainframe Discussion List On Behalf > Of Donald Russell > Sent: Sunday, June 30, 2019 3:21 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Using bpxbatch to compress an MVS dataset > > I sincerel

Re: Using bpxbatch to compress an MVS dataset

2019-06-30 Thread Donald Russell
Expct mistaks > >> > >> > >>> On Jun 30, 2019, at 12:05 PM, Gadi Ben-Avi wrote: > >>> > >>> If both systems are on the same physical computer, it might not be > worth > >> it. > >>> The time and cpu cycles it would take to

Re: Using bpxbatch to compress an MVS dataset

2019-06-30 Thread Donald Russell
> If both systems are on the same physical computer, it might not be worth > it. > > The time and cpu cycles it would take to compress and uncompress might > take longer than transferring the un compressed file. > > > > > > > > -Original Message- >

Using bpxbatch to compress an MVS dataset

2019-06-30 Thread Donald Russell
I have a batch process in zOS 2.1 (soon to be 2.3) that creates a large text file I want to FTP to a zLinux system. How can I use bpxbatch tar or compress (or ?) to create a smaller file I can ftp instead instead of the original file? I don’t want to use pkzip unless that’s the only choice. Terse

Re: zOS 2.1 JCL Symbol Services

2014-12-30 Thread Donald Russell
xl16 provided by iefsjsym On Tue, Dec 30, 2014 at 9:30 AM, Elardus Engelbrecht < elardus.engelbre...@sita.co.za> wrote: > Donald Russell wrote: > > >I wrote a small assembler program to try the JCL Symbol Services macro > (IEFSJSYM) but am not having any su

zOS 2.1 JCL Symbol Services

2014-12-30 Thread Donald Russell
program instead of parsing a PARM=/PARMDD string. Thanks for any suggestions... Donald Russell ​​ -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Convert TOD to calendar date/time

2014-10-01 Thread Donald Russell
Thanks for all the great suggestions. I used stckconv, but I'll check out these other methods too. Cheers Donald Russell On Wednesday, October 1, 2014, Peter Relson wrote: > Also, the BLSUXTOD (8-byte STCK input) and BLSUETOD (16-byte STCKE input) > services. > > Peter R

Re: Convert TOD to calendar date/time

2014-09-30 Thread Donald Russell
On 2014-09-30 17:21, John McKown wrote: > > > CONVTOD macro > > > > > ITYM STCKCONV. > > > > > On Sep 30, 2014 5:41 PM, "Donald Russell" wrote: > > > > > >> I have zOS 2.1 and am looking for an assembler macro or some other > > utility

Convert TOD to calendar date/time

2014-09-30 Thread Donald Russell
me portion and sub-second precision. Is there anything like that already available, or do I need to write my own? Thank you, Donald Russell -- Sent from iPhone Gmail Mobile -- For IBM-MAIN subscribe / signoff / arch

Re: building text messages with substitutions

2014-03-13 Thread Donald Russell
in it. Once I have it all done I'm happy to share what I did... Cheers On Thursday, March 13, 2014, Tony Harminc wrote: > On 13 March 2014 14:53, Donald Russell > > wrote: > > Holly Smokes! Metal C looks perfect THANKS! :-) I just need sprintf > features > >

Re: building text messages with substitutions

2014-03-13 Thread Donald Russell
Holly Smokes! Metal C looks perfect THANKS! :-) I just need sprintf features Donald Russell On Thu, Mar 13, 2014 at 11:32 AM, Tony Harminc wrote: > On 13 March 2014 14:01, John McKown wrote: > > Wish I had thought of using the Metal C version of sprintf(). I actually >

Re: building text messages with substitutions

2014-03-13 Thread Donald Russell
Sorry, I forgot to add a subject line :-( On Thu, Mar 13, 2014 at 8:04 AM, Donald Russell wrote: > zOS 1.2 (upgrading to 2.1 in the next few months) > > I've been using WTO ROUTCDE=11 to display various message in the job log > of assembler language batch applications that

Re: where to get current module name and scanning tiot

2014-03-09 Thread Donald Russell
de? Adding the length at the bottom of the loop points to the next (possible) item... then at the top of the loop the CLI checks if there is an item. Donald Russell On Fri, Mar 7, 2014 at 12:10 PM, Shmuel Metz (Seymour J.) < shmuel+ibm-m...@patriot.net> wrote: > In > , > on 03/06/

Re: where to get current module name and scanning tiot

2014-03-08 Thread Donald Russell
cc change) jnz tiotLoop go if there is another entry Thanks again. :-) Donald Russell On Fri, Mar 7, 2014 at 12:10 PM, Shmuel Metz (Seymour J.) < shmuel+ibm-m...@patriot.net> wrote: > In > , > on 03/06/2014 >at 08:18 PM, Donald Russell said: > > >I&#

Re: where to get current module name and scanning tiot

2014-03-07 Thread Donald Russell
Thanks Chris, Great info :-) In my case I'm looking at the TIOT before any DCBs have been opened, so even if FREE=CLOSE is specified, I'm still interested in the DD name Cheers, Donald Russell On Fri, Mar 7, 2014 at 6:57 AM, Blaicher, Christopher Y. < cblaic...@syncso

Re: where to get current module name and scanning tiot

2014-03-07 Thread Donald Russell
elds I actually "extract"ed. ​ ​But Christopher Blaicher can "find that address in two load instructions" :-) ​ To get to the TIOT use: PSATOLD->TCBTIO​ ​Donald Russell​ -- For IBM-MAIN subscribe / signoff

where to get current module name and scanning tiot

2014-03-06 Thread Donald Russell
programming at this level. Donald Russell -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Multiple timezones?

2013-08-09 Thread Donald Russell
ould work fine for what I need. Cheers, Donald Russell On Friday, August 9, 2013, Paul Gilmartin wrote: > On Fri, 9 Aug 2013 01:35:52 -0700, Donald Russell wrote: > > >H, yes, I can run Linux, and in fact have Linux running in the same > >lpar already. I can just creat

Re: Multiple timezones?

2013-08-09 Thread Donald Russell
H, yes, I can run Linux, and in fact have Linux running in the same lpar already. I can just create a Linux Userid (no need for another linux instance) and set their time zone accordingly and use a cron tab to trigger the event. Brilliant! Thanks for the tip. :-) Donald Russell On Friday

Multiple timezones?

2013-08-08 Thread Donald Russell
ust want a different view of the same time. :-) Or, I just have to write my own little time calculator to make the adjustment... Not a difficult thing, but if there's a wheel I can use... Thanks, Donald Russell -- Sent from iPho