Chapter Contents |
Previous |
Next |
Extended Table: _getErrors |
Syntax | |
Details | |
Example |
Syntax |
CALL NOTIFY (extended-table-name, '_getErrors', out-error-listid<, row>); |
Argument | Type | Description |
---|---|---|
out-error-listid |
N | an identifier for the SCL list containing either the rows or objects in error |
row |
N | the row to examine for objects in error |
Details |
If row is specified, the list contains the names of the objects in error in the specified row; otherwise, the list contains the rows that are in error.
Example |
This example displays the names of all objects in error in row 2:
call notify('table','_getErrors', errlist,2); call putlist(errlist,'Names of objects',1);
This example displays the list of rows in error in TABLE:
call notify('table','_getErrors', errlist); call putlist(errlist,'List of rows in error',1);
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.