> On Feb 12, 9:24 pm, Bharathi Allu <bharathichowdary.a
...@gmail.com>
> wrote:
> > On Feb 11, 10:42 pm, Ya <huang8...@gmail.com> wrote:
> > > On Feb 10, 11:08 pm, Bharathi Allu <bharathichowdary.a...@gmail.com>
> > > wrote:
> > > > 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;
> > > 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.- Hide quoted text -
> > > - Show quoted text -
> > 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.
> > > > (This sometimes results from failing to place a RUN statement- Hide quoted text -
> > - Show quoted text -- Hide quoted text -
> > - Show quoted text -
> 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.htmlhttp://support.sas.com/kb/5/597.... Hide quoted text -
> - Show quoted text -
Yes , for sure It is not working even for proc print. I am running it