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
Diamond | Level 26

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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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