Chapter Contents |
Previous |
Next |
Extended Table: _getMaxrow |
Syntax | |
Example |
Syntax |
CALL NOTIFY (extended-table-name, '_getMaxrow', out-maxrow); |
Argument | Type | Description |
---|---|---|
out-maxrow |
N | the maximum number of rows (negative, if dynamic table) |
Example |
_getMaxrow returns the maximum row in the variable MAXROW:
call notify('table','_get_maxrow_', maxrow); if ( maxrow < 0 ) then _msg_='Dynamic table has maxrow ' || -maxrow; else _msg_= 'Extended table has maxrow ' || maxrow;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.