× 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.



Don't you want this? The problem is you are using a subroutine and on line
9 you are issuing a return which will end the program.

If TestForError;
// Throw error.
EndIf;

//*********************************************************************************************
// TestForErrors - Test for errors
// In - None
// In/Out - None
// Out - None
// Returns - True if error occurred. False if not
//*********************************************************************************************
dcl-proc TestForErrors;
dcl-pi *N Ind end-pi;

If Procedure2() And
Procedure3() And
Procedure4();
Return FALSE;
Else;
Return TRUE;
EndIf;

end-proc;




On Wed, Feb 14, 2024 at 3:06 PM Brian Johnson <brian.johnson.mn@xxxxxxxxx>
wrote:

How about something like this...

Have each procedure return a success indicator where *on = success, then

Begin Procedure1

if Procedure2()
and Procedure3()
and Procedure4() ;
clear Errorfound ;
else;
Errorfound = *on;
return;
endif;

Mainline can then test for Errorfound that was set by the procedures.


On Wed, Feb 14, 2024 at 4:10 PM <smith5646midrange@xxxxxxxxx> wrote:

I have an RPGLE program that calls a number of procedures. If it is in a
procedure and it detects an error, I want it to stop processing and exit
back to the main procedure where the initial screen is displayed to
inform
the user of the error. I do not want the program to abend. Is there a
way
do to this without placing an if statement after each procedure? That
could
get really ugly and it would probably be easy to miss one because not all
procedures can encounter an error.

...


--
Brian Johnson
brian.johnson.mn@xxxxxxxxx
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.