BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
learn_SAS_23
Pyrite | Level 9

Hi , 

 

am trying to create a HTML Page through SAS, But when i opened HTML_FRAME.html , am seeing a blank screen

 

ODS HTML PATH='C:\test\'
file='HTML_FILE.html'
contents='HTML_CONTENTS.html'
frame='HTML_FRAME.html';
ODS PROCLABEL 'TOC Title – First Proc ';
proc print data=sales;
var region state sales;
run;

ODS PROCLABEL 'TOC Title – Second Proc';
proc means data=sales mean sum;
class region ;
format region $test.;
var sales;
run;
ODS HTML close;

1 ACCEPTED SOLUTION

Accepted Solutions
learn_SAS_23
Pyrite | Level 9

Thanks for your reply , 

 

i tried  with  URL option , But still am getting the same error (Page cannot be displayed)  when i tried to open frame page.

 

 

ods html
/* specify locations of HTML files */
body='external_file.HTML' (URL='external_file.HTML')
page='na_body.HTML' (URL='na_body.HTML')
contents='examplc.htmL' (URL='examplc.htmL')
frame='examplf.htmL' (URL='examplf.htmL')
PATH='C:/Execution/Extract/'(url=none);

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

The first thing to do is to check your SASLOG and then make sure there are no WARNINGs or ERRORs. If there are such WARNINGs or ERRORs then you need to fix them.

--
Paige Miller
learn_SAS_23
Pyrite | Level 9

Thanks for your quick reply, 

 

There are no errors  in my log, i can able to see the output in another two files such as but can't able to load combined output in frame file 'HTML_FRAME.html'. am getting page cannot be  displayed message, and all the three files are in same path.

 

file='HTML_FILE.html'
contents='HTML_CONTENTS.html'

learn_SAS_23
Pyrite | Level 9

Thanks for your reply , 

 

i tried  with  URL option , But still am getting the same error (Page cannot be displayed)  when i tried to open frame page.

 

 

ods html
/* specify locations of HTML files */
body='external_file.HTML' (URL='external_file.HTML')
page='na_body.HTML' (URL='na_body.HTML')
contents='examplc.htmL' (URL='examplc.htmL')
frame='examplf.htmL' (URL='examplf.htmL')
PATH='C:/Execution/Extract/'(url=none);

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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