BookmarkSubscribeRSS Feed
BMH_KH
Calcite | Level 5

The code below worked in v9.2 but, now in v9.3, the output PNG file from PROC GMPA goes to a temporary sub-directory in the SAS directory instead of the path name denoted in the FILENAME statement.  Does anyone know why this no longer works?!

FILENAME plots "C:\Maps\";

DEVICE=png transparency GSFNAME=plots GSFMODE=REPLACE NOFILEONLY;

PROC gmap data=mapproj map=mapproj anno=annoProj2;

     id state;

     choro state / nolegend coutline=black name="OutMap";

run; quit;

1 REPLY 1
MartinMincey
SAS Employee

Hello,

The problem you are running into is due to a change that was made starting with SAS 9.3 where SAS 9.3 now creates HTML output by default and disables the default listing destination.  To circumvent this problem with SAS 9.3, add the following two statements to the beginning of your SAS code:

   ods _ALL_ close;

   ods listing;

Here are links to a couple of SAS usage notes which document this change:

49388 - Graphics output might not be sent to the desired location with SAS® 9.3

42874 - Default behavior for the SAS windowing environment on Microsoft Windows, UNIX, and Linux ope...

Regards,

Martin Mincey

SAS Technical Support

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1 reply
  • 1635 views
  • 0 likes
  • 2 in conversation