When I execute the below code, it gives me the required output in pdf, however I get some unwanted bookmarks like “FilePrint”.
Is there any way, I can get rid of these additional bookmarks?
Any help is appreciated.
--Thanks
ods escapechar="~";
proc template;
define table foo;
column text ;
style={frame=void};
define text;
print_headers = off;
end;run;
title ;
ods pdf file="C:\pngconvert.pdf" bookmarklist=show bookmarkgen=yes;
ods proclabel = "Test";
%let text=~{style [just=c font_weight=bold font_size=14pt] Test };
/**/
data _null_ ;
file print ods =(template="foo");
description="";
length text $100;
text = "&text";
put _ods_;
run;
ods pdf close;
... View more