Deletes a note marker from a SAS data set or an external file.
Categories: | SAS File I/O |
External Files |
is a numeric variable that specifies the identifier that was assigned when the data set or external file was opened, generally by the OPEN function or the FOPEN function.
is a numeric value that specifies the identifier that was assigned by the NOTE or FNOTE function.
%let dsid=%sysfunc(open(mydata,i));
%let rc=%sysfunc(fetch(&dsid));
%let noteid=%sysfunc(note(&dsid));
more macro statements
%let rc=%sysfunc(point(&dsid,¬eid));
%let rc=%sysfunc(fetch(&dsid));
%let rc=%sysfunc(dropnote(&dsid,¬eid));