Mary A. Marion
Mary A. Marion

Reputation: 800

What is this SAS note saying? ODS PDF(WEB) printed no output

What is this SAS note saying? ODS PDF(WEB) printed no output.

I have not requested the saving of a pdf file. This code is just at the beginning of my program code.

 98         /* ODS STATEMENTS */
 99         ODS LISTING GPATH='&sasworklocation';
 100        ODS LISTING GPATH='c:\data';
 101        ods path reset;
 102        ods _ALL_ close;
 NOTE: ODS PDF(WEB) printed no output. 
       (This sometimes results from failing to place a RUN statement before 
        the ODS PDF(WEB) CLOSE statement.)
        ods trace off;

Thank you. MM

Upvotes: 0

Views: 497

Answers (2)

Mary A. Marion
Mary A. Marion

Reputation: 800

To reduce log output in SAS University uncheck LOG Options-Show generated code in SAS log preferences.

Upvotes: 0

Reeza
Reeza

Reputation: 21274

If you're using SAS EG or Studio it submits some code at the beginning of each submission and teh end. You can turn the display of this code on/off but you cannot stop it. You likely have PDF selected as an output options somewhere or the automatic code is generating that message. You can probably ignore it safely.

Upvotes: 1

Related Questions