Chapter Contents |
Previous |
Next |
SYSMSG |
Category: | SAS File I/O |
Category: | External Files |
Syntax | |
Details | |
Example | |
See Also |
Syntax |
SYSMSG() |
Details |
SYSMSG returns the text of error messages or warning messages that are produced when a data set or external file access function encounters an error condition. If no error message is available, the returned value is blank. The internally stored error message is reset to blank after a call to SYSMSG, so subsequent calls to SYSMSG before another error condition occurs return blank values.
Example |
This example uses SYSMSG to write to the SAS log the error message generated if FETCH cannot copy the next observation into the Data Set Data Vector. The return code is 0 only when a record is fetched successfully:
%let rc=%sysfunc(fetch(&dsid)); %if &rc ne 0 %then %put %sysfunc(sysmsg());
See Also |
Functions:
|
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.