Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Tom Marchant
On Thu, 11 Apr 2019 14:31:09 -0400, Peter Relson wrote: >CALLRTM TYPE=ABTERM,COMPCOD=xxx,RETRY=NO > >or CANCEL your job (the CANCEL completion code, and any accompanying >DETACH-of-subtasks completion codes, will not be retryable and thus will >have SDWACLUP on). > >RETRY=NO is not available

Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Peter Relson
CALLRTM TYPE=ABTERM,COMPCOD=xxx,RETRY=NO or CANCEL your job (the CANCEL completion code, and any accompanying DETACH-of-subtasks completion codes, will not be retryable and thus will have SDWACLUP on). RETRY=NO is not available via ABEND. CALLRTM requires authorization. Peter Relson z/OS Core

Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Charles Mills
Sent: Thursday, April 11, 2019 6:25 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Programmatic way to create unrecoverable ABEND? For authorized code, you can use the CALLRTM service. This can kill the current task or any task you want. You could have a test program that abends a task in your main

Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Nick Jones
For authorized code, you can use the CALLRTM service. This can kill the current task or any task you want. You could have a test program that abends a task in your main program. It also has options to disable retry. Nick Jones

Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Binyamin Dissen
Well, you can CALLRTM your parent task. On Wed, 10 Apr 2019 13:39:35 -0700 Charles Mills wrote: :>Is there a reasonably easy way for a task to create an ABEND that ESTAE or :>FRR will indicate is unrecoverable (SDWACLUP)? (I can't use console CANCEL :>because I need the ABEND to occur within a

Re: Programmatic way to create unrecoverable ABEND?

2019-04-11 Thread Steve Smith
every* abend turned into an 0C4. > > ... > > -Original Message- > > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] > On Behalf Of Charles Mills > > Sent: Wednesday, April 10, 2019 4:40 PM > > To: IBM-MAIN@LISTSERV.UA.EDU > &g

Re: Programmatic way to create unrecoverable ABEND?

2019-04-10 Thread Tom Brennan
. Chris Blaicher Technical Architect Syncsort, Inc. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Charles Mills Sent: Wednesday, April 10, 2019 4:40 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Programmatic way to create unrecoverable

Re: Programmatic way to create unrecoverable ABEND?

2019-04-10 Thread Christopher Y. Blaicher
@LISTSERV.UA.EDU Subject: Programmatic way to create unrecoverable ABEND? Is there a reasonably easy way for a task to create an ABEND that ESTAE or FRR will indicate is unrecoverable (SDWACLUP)? (I can't use console CANCEL because I need the ABEND to occur within a fairly specific range of machine

Programmatic way to create unrecoverable ABEND?

2019-04-10 Thread Charles Mills
Is there a reasonably easy way for a task to create an ABEND that ESTAE or FRR will indicate is unrecoverable (SDWACLUP)? (I can't use console CANCEL because I need the ABEND to occur within a fairly specific range of machine instructions.) Will issuing a DETACH "for myself" do it? ABEND