BookmarkSubscribeRSS Feed
tarthur
Calcite | Level 5

I’ve got some sas code that generates html which contains an sgplot with drillable data points.  When clicking on a line marker, it runs code in sas job execution.  This all works fine in studio.  Now I’m trying to run it in sas job execution and I can’t get the output to appear.  There are no errors in the log.  I think I’m just not specifying the correct job definition parameters.  Can you advise?  Also, would I leave off the ods html and ods graph statements in my code?

 

Here are the ods statements which I currently have commented out:

/* ods html device=png style=htmlblue newfile=page; */

/* ods graphics / reset imagemap=yes height=4in width=7in outputfmt=png; */

 

Here are the job definition parameters:

_action=wait

_ODSSTYLE=HTMLBlue

_OUTPUT_TYPE=html

_ODSDEST=html

_ODS_DEVICE=png

 

I get the html page with a missing icon for the sgplot output.

 

%jesbegin is generating these ods statements:

ods graphics on / outputfmt=png;
ods html style=HTMLBlue file=_webout;
2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

Try option

ods html style=HTMLBlue file=_webout gpath=;
FredrikHansson
Obsidian | Level 7

Try setting:

_ODSOPTIONS = options(BITMAP_MODE='inline')


This option will convert your binary picture into a BASE64-encoded string that is included into the HTML. The pictures are not stored as separate binary files.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 450 views
  • 3 likes
  • 3 in conversation