Chapter Contents |
Previous |
Next |
DROPNOTE |
Category: | SAS Table |
Syntax | |
Details | |
Example | |
See Also |
Syntax |
rc=DROPNOTE(table-id|file-id,note-id); |
0 | successful |
0 | not successful |
Type: Numeric
Type: Numeric
Type: Numeric
Details |
DROPNOTE deletes a marker that was set by NOTE or FNOTE.
Example |
Open the SAS table MYDATA, fetch the first row, and set a note ID at the beginning of the table. Return to the first row by calling POINT, and then delete the note ID by calling DROPNOTE.
dsid=open('mydata','i'); rc=fetch(dsid); noteid=note(dsid); /* more SCL statements */ rc=point(dsid,noteid); rc=fetch(dsid); rc=dropnote(dsid,noteid);
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.