× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



A GOTO is not necessary.

For example here are two scenarios:

1. This SAV command received message ID CPFA09E as an Escape message (instead of as a diagnostic message). In that case this code would "GOTO LO" because CPFA09E would be a "HIT" in the first MONMSG block and thus break out of the MONMSG processing with the default "INGORE" because of the lack of EXEC on that MONMSG.


2. This SAV command received message id CPF3794 as an Escape message. Then that would be a Miss on the first MONMSG block, which then falls to the second MONMSG which it "Hits" since it's an Any-CPF error (CPF0000). So that process would hit the /* more code here */ "GOTO HI" section.


SAV DEV(()) OBJ(()) SAVACT(*YES) SEQNBR(*END) +
EXPDATE() ENDOPT(*LEAVE) ASYNCBRING(*YES)
MONMSG MSGID(CPFA09E CPD384E CPF3837 CPF3838) /* if any of these HIT then monmsg process stops here */
MONMSG MSGID(CPF0000) EXEC(DO)
/* more code here */
GOTO HI
ENDDO
GOTO LO

LO: RETURN

HI: RETURN

ENDPGM



Chris Hiebert
Senior Programmer/Analyst
Disclaimer: Any views or opinions presented are solely those of the author and do not necessarily represent those of the company.


-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf
Of Justin Taylor
Sent: Monday, May 17, 2021 12:05 PM
To: MIDRANGE-L <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: Mult MONMSG not working as expected

I see. I assume that if the first MONMSG executes a GOTO to skip the
second, that would work. Correct?

Thanks

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.