How to: |
Available Languages: reporting, Maintain
The FEXERR function retrieves an error message. It is especially useful in a procedure using a command that suppresses the display of output messages.
An error message consists of up to four lines of text. The first line contains the message and the remaining three contain a detailed explanation, if one exists. FEXERR retrieves the first line of the error message.
FEXERR(error, 'A72')
where:
Numeric
Is the error number, up to 5 digits long.
Is the format of the output value enclosed in single quotation marks. The format is A72, the maximum length of an error message.
FEXERR retrieves the error message whose number is contained in the &ERR variable, in this case 650. The result is returned to the variable &&MSGVAR and has the format A72.
-SET &ERR = 650; -SET &&MSGVAR = FEXERR(&ERR, 'A72'); -TYPE &&MSGVAR
The output is:
(FOC650) THE DISK IS NOT ACCESSED