Kbase 15863: Intrepreting VMS status messages found in .lg file
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/05/1998 |
|
Intrepreting VMS status messages found in .lg file
To interpret the meaning of status messages returned from
OpenVMS note the status code # in the status message, then
use the OpenVMS lexical function, F$MESSAGE to evaluate
its meaning.
Example:
(message extracted from database.lg file)
08:33:56 Usr 1: Exit due to Status 295044 (48084)
from the Openvms $ prompt, do:
$ write sys$output f$message("295044")
This message equates to:
%JBC-F-JOBABORT, job aborted during execution.
Note: The value in parentheses (48084) is the hexadecimal
value for 295044.
In this particular instance, the batch job was stopped
before completion.
Other methods which can be used to interpret the status message are to
make use of the DCL Commands EXIT and RETURN, as shown below. These
commands are typically used as part of DCL command procedures to
indicate the specific status of the command procedures execution.
$ exit 295044
%JBC-F-JOBABORT, job aborted during execution
$ return 295044
%JBC-F-JOBABORT, job aborted during execution
Progress Software Technical Support Note # 15863