NET/MASTER Messages Manual
NNM0983
Messages
106159 Tandem Computers Incorporated 2–185
NNM0982
loginfo
Cause. An attempt was made to resume a failed procedure but the value of the
SYS.ERROR.RESUMEOK system variable was 0: that is, the procedure cannot be
resumed.
loginfo
contains the ID of the NCL process and describes the failure of the
procedure.
Effect. The procedure is terminated.
Recovery. Rewrite the procedure so that RESUME is only executed if the value of
&SYS.ERROR.RESUMEOK is 1.
NNM0983
loginfo
Cause. An NCL procedure has failed.
loginfo
describes a pertinent NCL system error variable (a variable starting
with &SYS.ERROR.) that can be used to determine the cause of the
problem.
The following is an example:
NNM0983 HYNCLTST(1581) SYS.ERROR.CODE: 13
HYNCLTST is the name of the NCL procedure that failed, 1581 is the NCL ID of the
procedure that was executing, and 13 is the value of the SYS.ERROR.CODE system
variable.
Effect. Depending on the error handling implemented in the NCL procedure, the
procedure may be resumed or flushed. The message is sent to the activity log.
Recovery. Correct the error and restart the NCL procedure.