BookmarkSubscribeRSS Feed
Jaime
Fluorite | Level 6
I am using a stored proc to create a map with the feature to map over a state and display a popup with some information. It works in both EG and WEB. But when I run the stored proc in WRS the mouse over feature does not work. Below is my script. I'm using an GIF/HTML combination.

filename odsout '.';
goptions reset=all ;
GOPTIONS DEVICE=GIF xpixels=1000 ypixels=750 gunit=pct htitle=6 ftitle="arial/bold" htext=4 ftext="arial";
goptions display;
ODS LISTING CLOSE;
ODS HTML path=odsout file="dummy.htm";

title1 box=1 bcolor=grayee color=cx567E3A justify=left "PEs by Location";
pattern1 value=solid color=grayff;
pattern2 value=solid color=grayee;
pattern3 value=solid color=graycc;
pattern4 value=solid color=gray99;
pattern5 value=solid color=gray85;
pattern6 value=solid color=gray75;
pattern7 value=solid color=gray65;
pattern8 value=solid color=gray55;
proc gmap map=maps.us data=states;
format PEs pct.;
id state;
choro PEs /discrete coutline=black annotate=maplabel name="US" html=myhtml;
run;

goptions nodisplay;
ods html close;
ods listing; Message was edited by: Jaime
3 REPLIES 3
Cynthia_sas
SAS Super FREQ
Hi:
I would only expect this to work in EG or with the Info Delivery Portal or the Stored Process Web Application (SASStoredProcess/do?).

SAS Web Report Studio (WRS) cannot receive HTML results from a stored process. When your stored process runs, in SAS 9.1.3, if the client application is WRS, the stored process results are created and returned to WRS as SAS Report XML -- the SAS Report XML doesn't know how to deal with the URL or hyperlink set with HTML=. See this Tech Support note for more information:
http://support.sas.com/kb/18/304.html

Since the note says this behavior is fixed in WRS release 4.2, you might want to check with Tech Support for more information about whether your program falls into the category of what was fixed (since the note talks about reports and not specifically about graphs).

cynthia
Jaime
Fluorite | Level 6
Thanks.
Is this the same reason why my proc reports look so ugly in WRS. WRS seems to change my formats and column size.
Cynthia_sas
SAS Super FREQ
Hi:
It sort of depends on what you mean by "formats" (do you mean colors and fonts or do you mean SAS user-defined formats) and how you're setting them (using ODS style elements or using CSS style properties with HTMLSTYLE=). And, of course, LISTING options, like HEADLINE, HEADSKIP, SKIP, DOL, DUL, WIDTH, SPACING, etc are ignored by most all ODS destinations (and not exclusively by WRS).

As explained in these notes:
http://support.sas.com/kb/33/115.html
http://support.sas.com/kb/20/207.html
http://support.sas.com/kb/35/071.html

CELLWIDTH, for example should work -- but only in WRS View Report mode. As explained in the notes, CELLWIDTH will not be respected in WRS Print/Preview mode.

If, however, you are using HTMLSTYLE and CSS style properties to set color, font and cellwidths, etc, etc, then I would not expect those methods to work with WRS at all, since WRS is not "receiving" HTML, but is instead receiving SAS Report XML. The only other thing that I know doesn't work well in WRS with PROC REPORT is that the LINE statement output is not displayed in WRS (but will display in other client applications, such as EG or Microsoft Word).

If you have questions about specific issues where your stored process is not working, you might wish to work with Tech Support.

cynthia

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 3 replies
  • 694 views
  • 0 likes
  • 2 in conversation