With sas/graph annotate, once you reach a certain number of annotate 'errors' it ignores further annotate commands.
One way around this is to tell annotate to ignore the errors, and keep trying, by adding something like this to your annotate dataset...
data ignore_error; function='seterror'; size=100000; output; run;
data anno; set ignore_error anno;
run;
... View more