BookmarkSubscribeRSS Feed
s_m
Obsidian | Level 7 s_m
Obsidian | Level 7

 

I got three html files.I am able to see table of contents and body file seperatly in a browser. But when I opened frame file I dint see anything.  It looks like a blank page when I opened it in IE. I am supposed to see body as well as table of contents embeded int it together. Why frame file is not working as expected in this case.

Please some one help me with it.

 

libname learn xlsx '/folders/myshortcuts/s2/college.xlsx';

ods html body='body_sample.html'
              contents='content_sample.html'
               frame='frame_sample.html'
               path='/folders/myshortcuts/s2/ODSOutput';
 
proc print data=learn.sheet1;
run;
 
proc means data=learn.sheet1 n mean min max;
run;
 
ods html close;
4 REPLIES 4
Reeza
Super User

I know why its happening but not howing to fix it. 

 

When you create the file the paths to the body/contents file are '/folders/myfolders/' but that doesn't apply once you're out of the VM. It makes sense from SAS perspective and anyone working with SAS on a server will have the same issue. 

 

You could manually fix the frame page but that's not a good fix. 

ballardw
Super User

Try:

ods html body='body_sample.html'
              contents='content_sample.html'
               frame='frame_sample.html'
               path='/folders/myshortcuts/s2/ODSOutput';
 
   ods html body='Print.html';
   proc print data=learn.sheet1;
   run;
   ods html body='means.html'; 
   proc means data=learn.sheet1 n mean min max;
   run;

ods html close;

Your main Body file likely doesn't contain any of the output. Create a separate html file for each group of tables/output you wish to see with a reference in the contents.

 

Reeza
Super User

The paths in the file end up being /folders/my shortcuts/.... which doesn't exist on your computer, when using SAS UE, so the body/content files aren't found.  

AudeP
Fluorite | Level 6

I got the same problem because I'm using SAS Studio. As I can't open my html files directly with a web broswer, I have to download them, but then the reference to the 2 html files in the frame.html are wrong. 
What's working for SAS Studio is the use of the URL suboption, allowing to use relative URLs. So as long as the files are in the same directory or storage location, it should work. 

ods html FILE='/home/yourUsername/myfolder/data.html' (url = 'data.html')
	 CONTENTS='/home/yourUsername/myfolder/tabOfContent.html' (url = 'tabOfContent.html')


FRAME='/home/yourUsername/myfolder/frame.html';

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 4 replies
  • 2007 views
  • 0 likes
  • 4 in conversation