|
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;
|