SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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.

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

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.

Kurt_Bremser
Super User

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).

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 5273 views
  • 4 likes
  • 3 in conversation