BookmarkSubscribeRSS Feed
MaryA_Marion
Lapis Lazuli | Level 10

Attempts:

ODS HTML STARTPAGE=yes;                  
proc genmod data=solder;
model y = a b c d e f g/ dist = poisson link=identity lrci;
run; quit;
ods html startpage=no;

Any suggestions? Thanks. MM
6 REPLIES 6
MaryA_Marion
Lapis Lazuli | Level 10

I should have mentioned I am using SAS on Demand.

Log message says ODS may disable some output features.

All of the usual statements like formdlim='' are not working?

Where can I find out more when I get that message?

It looks like I output things one at a time. 

MM

Ksharp
Super User
ODS HTML body='temp.html' path='c:\temp\' options(startpage='yes');                   
proc print data=sashelp.class;run;

ODS HTML options(startpage='yes') ;                    
proc print data=sashelp.class;run;

ODS HTML options(startpage='yes') ;                    
proc print data=sashelp.class;run;
ods html close;

Try option 'startpage=' :

MaryA_Marion
Lapis Lazuli | Level 10
I am using SAS on Demand. I think it may react differently than pc SAS.

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
SYMBOLGEN: Macro variable _SASWSTEMP_ resolves to
/home/u50158717/.sasstudio/.images/e7914229-06c5-474b-9ecf-83e89755
dbbe
SYMBOLGEN: Some characters in the above value which were subject to macro
quoting have been unquoted for printing.
SYMBOLGEN: Macro variable GRAPHINIT resolves to GOPTIONS RESET=ALL
GSFNAME=_GSFNAME;
NOTE: ODS statements in the SAS Studio environment may disable some output
features.
73
74 ODS HTML options(startpage='yes') ;
NOTE: Writing HTML Body file: sashtml31.htm
ERROR: Insufficient authorization to access
/pbr/biconfig/940/Lev1/SASApp/sashtml31.htm.
ERROR: No body file. HTML output will not be created.
75 proc print data=sashelp.class;run;
NOTE

Thank you for responding. MM
ChrisNZ
Tourmaline | Level 20

> I am using SAS on Demand. I think it may react differently than pc SAS.
It's the same SAS process so should behave the same.

 

> ERROR: Insufficient authorization to access

Create your file in a directory you have write access to

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