Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Issue with ODS pdf
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bharathi Allu  
View profile  
 More options Feb 11, 2:08 am
Newsgroups: comp.soft-sys.sas
From: Bharathi Allu <bharathichowdary.a...@gmail.com>
Date: Fri, 10 Feb 2012 23:08:30 -0800 (PST)
Local: Sat, Feb 11 2012 2:08 am
Subject: Issue with ODS pdf
HI ,

I have code as below , but I dont find any reason for not creating pdf
output. I get a "NOTE: ODS PDF printed no output". Can any one help me
with the solution plz. Thanks.

goptions reset=all device=ftgif gsfmode=replace gsfname=grafout
display;
/***I have already tried with device= . diff options******/

ods listing close;
ods pdf file="/sas/xxx/report.pdf";

proc gplot data=abc;
quit;
run;
ods pdf close;
ods listing;

/*********************LOG ******************************/

MACROGEN(RPT):   title1;
MACROGEN(RPT):   ods pdf close;
NOTE: ODS PDF printed no output.
      (This sometimes results from failing to place a RUN statement
before the ODS PDF CLOSE statement.)
MACROGEN(RPT):   ods listing;


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ya  
View profile  
 More options Feb 11, 12:42 pm
Newsgroups: comp.soft-sys.sas
From: Ya <huang8...@gmail.com>
Date: Sat, 11 Feb 2012 09:42:04 -0800 (PST)
Local: Sat, Feb 11 2012 12:42 pm
Subject: Re: Issue with ODS pdf
On Feb 10, 11:08 pm, Bharathi Allu <bharathichowdary.a...@gmail.com>
wrote:

The proc gplot do not have a plot statement, therefore, there is
really
no graph created, therefore the pdf is empty.

proc gplot data=...;
plot y*x=z;
run;

You missed the critical plot statement.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bharathi Allu  
View profile  
 More options Feb 13, 12:24 am
Newsgroups: comp.soft-sys.sas
From: Bharathi Allu <bharathichowdary.a...@gmail.com>
Date: Sun, 12 Feb 2012 21:24:01 -0800 (PST)
Local: Mon, Feb 13 2012 12:24 am
Subject: Re: Issue with ODS pdf
On Feb 11, 10:42 pm, Ya <huang8...@gmail.com> wrote:

Hi,
In my original code I  have correct procedure . (gplot procedure is
just an example given here). If I put simple proc print also, I get
following note
NOTE: ODS PDF printed no output.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ya  
View profile  
 More options Feb 13, 1:35 pm
Newsgroups: comp.soft-sys.sas
From: Ya <huang8...@gmail.com>
Date: Mon, 13 Feb 2012 10:35:59 -0800 (PST)
Local: Mon, Feb 13 2012 1:35 pm
Subject: Re: Issue with ODS pdf
On Feb 12, 9:24 pm, Bharathi Allu <bharathichowdary.a...@gmail.com>
wrote:

Interesting, you sure even proc print won't work?
These are what I found from sas website, neither seems to answer your
question though.
Can you run your code in batch and see what happens?
Also, what platform you are running, Unix?

http://support.sas.com/kb/36/035.html
http://support.sas.com/kb/5/597.html


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bharathi Allu  
View profile  
 More options Feb 14, 12:22 am
Newsgroups: comp.soft-sys.sas
From: Bharathi Allu <bharathichowdary.a...@gmail.com>
Date: Mon, 13 Feb 2012 21:22:46 -0800 (PST)
Local: Tues, Feb 14 2012 12:22 am
Subject: Re: Issue with ODS pdf
On Feb 13, 11:35 pm, Ya <huang8...@gmail.com> wrote:

Yes , for sure It is not working even for proc print.  I am running it
in Linux.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »