LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 23 Oct 2008 12:37:00 -0400
Reply-To:   Ya Huang <ya.huang@AMYLIN.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Ya Huang <ya.huang@AMYLIN.COM>
Subject:   Re: problem with pdf file
Comments:   To: Ran S <raan67@YAHOO.COM>

I'm just guessing here. It seems to me that page break in the lst file is not recognized by ods. Was the lst file generated by SAS Unix and ODS code was run in Windows? If so, you have to convert the Unix file to Windows file. This can be done with Ultraedit. Unix and Windows use different code for page break.

On Thu, 23 Oct 2008 08:50:29 -0400, Ran S <raan67@YAHOO.COM> wrote:

>Hi, > >I am using following code to create pdf file. But in the pdf file, there is >a overlap in the pages..like..on one page you can also see part of another >page and then footnote in the middle of the page..and so on. But when you >check in the output window or in .lst file, each page is clear with >footnote at the bottom and you see one page at a time. > >I am not sure why its creating like this in pdf file. Any suggestions to >fix this problem.. > > >ODS PDF FILE='...\myoutput.pdf'; > DATA _NULL_; > FILE PRINT; > INFILE "...\myoutput.lst"; > INPUT; > PUT _INFILE_; > RUN; >ODS PDF CLOSE;


Back to: Top of message | Previous page | Main SAS-L page