Hello
I am using ODS pdf and get a warning message
"WARNING: Unsupported device 'ACTIVEX' for PDF destination. Using device 'ACTXIMG'."
What does it mean please?
What should I do to stop this warning?
ODS pdf file= "/path/example1.pdf";
PROC print data=sashelp.class;
RUN;
ODS pdf CLOSE;
Googe search is an amazing tool, its first response to that warning was this SAS technical note:
http://support.sas.com/kb/31/619.html
So close listing destination.
Googe search is an amazing tool, its first response to that warning was this SAS technical note:
http://support.sas.com/kb/31/619.html
So close listing destination.
Maxim 6: Google is your friend.
A search for "WARNING: Unsupported device 'ACTIVEX' for PDF destination. Using device 'ACTXIMG'." will get you lots of information about this WARNING, and that it can be safely ignored.
If you want to prevent it (eg because you don't want WARNINGs in a batch job), follow the second result of the above search to find that
goptions device=ACTXIMG;
will do that (issue it right before ODS PDF).
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.