BookmarkSubscribeRSS Feed
Adrienne
Fluorite | Level 6

I'm trying out the Report Writing Interface. In version 9.2 (TS2M3), the code below works, but when I run it in version 9.3 (TS1M2), I get a blank page. I've attached both output HTML files.

ods listing close;

ods html path="c:\temp" (url=none) body='rwi93.html';

data _null_;

    declare odsout t();

    t.href(data: "linkname",

           href: "http://www.sas.com");

run;

ods html close;

ods listing;

Any suggestions?

Thanks,

Adrienne

2 REPLIES 2
Cynthia_sas
SAS Super FREQ

Hi:

  Offhand, I'd suspect something changed in the Report Writing Interface between 9.2 and 9.3, so my recommendation would be to work with Tech Support. If you look at the difference in HTML output between 9.2 and 9.3 you can see that 9.2 is building an <A> tag, but 9.3 is not. That could be related to the flavor of HTML used between 9.2 and 9.3 or it could be related to something in how the output was generated internally in the RWI. In 9.2, the anchor tag built a <DIV> tag and then an <A> tag with "linkname" as the value between the beginning of the <A> tag and the end. With 9.3, there is no <A> tag built at all. The enclosing <DIV> tag is empty.

cynthia

Adrienne
Fluorite | Level 6

Thanks. I'll do that.

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