When you call the zipcitydist() function and supply an zipcode that doesn't exist in sashelp.zipcode like below:
option notes;
data zip;
zip = 12345;
run;
proc sql noprint;
select zipcitydist(00000,99999) from zip;
%runquit;
Part of the log displayed is this note:
NOTE: ZIP code value 0 could not be found in SASHELP.ZIPCODE.
Not necessarily a bad note, unless your dataset is millions of rows, and you get a note for each one.
Can the default behavior of this note be changed so that only the first 10 or so examples are displayed and then we get a note saying further examples were omitted from the log? Currently the only alternative is to use 'option nonote' which is overkill.