F
Fernando Souza
Guest
Errors from procedures are not propagated back the caller by default. You would have to either catch the error in the internal procedure and throw it back to the caller, or change the behavior for that .p by adding this to the top of your .p ROUTINE-LEVEL ON ERROR UNDO,THROW. This will cause the procedure (and its internal procedures) to propagate the error back to the caller.
Continue reading...
Continue reading...