<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12971#M3198</link>
    <description>Olivier make allusion to the fact he is working in french &lt;BR /&gt;
and i was following this trend.&lt;BR /&gt;
But i have a more general remark who (which?) is just applying to&lt;BR /&gt;
the appearance of the trend&lt;BR /&gt;
&lt;BR /&gt;
Both Olivier and Cynthia have written very long messages  upon their screen&lt;BR /&gt;
 (without line break) and the conclusion is&lt;BR /&gt;
if ianybody want to keep a paper copy of an interesting solution&lt;BR /&gt;
he has difficulties even in reduced  view before printing as at 30% reduce &lt;BR /&gt;
the end of the lines are cutted.&lt;BR /&gt;
In landscape mode it happen me in the past on this forum &lt;BR /&gt;
having twice impossibility to print as reducing at 20% was not more readable&lt;BR /&gt;
and the end of the line were yet cutted.&lt;BR /&gt;
&lt;BR /&gt;
So if some explicit councel to writer could appear to avoid TOO LONG LINES&lt;BR /&gt;
and with also the trick [PRE] [\PRE]&lt;BR /&gt;
&lt;BR /&gt;
Many thanks Cynthia    for a direct answer (wielki@ined.fr)</description>
    <pubDate>Wed, 23 Apr 2008 15:04:47 GMT</pubDate>
    <dc:creator>Andre</dc:creator>
    <dc:date>2008-04-23T15:04:47Z</dc:date>
    <item>
      <title>ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12968#M3195</link>
      <description>Hi all.&lt;BR /&gt;
I recently ran into something quite weird. Say you want to create PDF output with ODS ; this document will consist in a Freq procedure output (note to Cynthia : I've tried with proc Report, but the problem remains). The code works out fine. I then try to add improvements to the document, using ODS ESCAPECHAR. Adding an image (such as company logo) at the beginning of the page with a TITLE statement and ODS ESCAPECHAR still works out fine.&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS ESCAPECHAR = "^" ;&lt;BR /&gt;
ODS PDF FILE="c:\temp\output.pdf" ;&lt;BR /&gt;
TITLE1 '^S={PREIMAGE="c:\temp\logo.gif"}' ;&lt;BR /&gt;
PROC FREQ DATA = sashelp.class ;&lt;BR /&gt;
    TABLE age ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
TITLE ;&lt;BR /&gt;
ODS PDF CLOSE ;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
It becomes weird when I add a customized title or footnote, still using ESCAPECHAR, something like "Page 1 on a total of 3". Adding it as a TITLE2 will make the image disappear, while adding it as a FOOTNOTE will make the procedure output disappear !&lt;BR /&gt;
[pre]&lt;BR /&gt;
ODS ESCAPECHAR = "^" ;&lt;BR /&gt;
ODS PDF FILE="c:\temp\output.pdf" ;&lt;BR /&gt;
TITLE1 '^S={PREIMAGE="c:\temp\logo.gif"}' ;&lt;BR /&gt;
FOOTNOTE1 "Page ^{thispage} on a total of ^{lastpage}" ;&lt;BR /&gt;
PROC FREQ DATA = sashelp.class ;&lt;BR /&gt;
    TABLE age ;&lt;BR /&gt;
RUN ;&lt;BR /&gt;
FOOTNOTE ;&lt;BR /&gt;
TITLE ;&lt;BR /&gt;
ODS PDF CLOSE ;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
Some tests showed that the problem only exists in PDF, and the log says something like : "No logical assign for Filename []".&lt;BR /&gt;
Any ideas, anyone ?&lt;BR /&gt;
Thanks in advance.&lt;BR /&gt;
Olivier</description>
      <pubDate>Wed, 23 Apr 2008 09:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12968#M3195</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2008-04-23T09:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12969#M3196</link>
      <description>Hi, Olivier:&lt;BR /&gt;
  This is the full text of the error message that I got:&lt;BR /&gt;
[pre]&lt;BR /&gt;
ERROR: No logical assign for filename &amp;#5;.&lt;BR /&gt;
ERROR: Internal error on replay for "page i of n" processing.  Could be caused by out of memory, out of disk space, or internal coding error. Check for other&lt;BR /&gt;
       error messages above indicating probable user error or resource constraints; if there are none, or if they make no sense, please report this message&lt;BR /&gt;
       and provide a test program to SAS Institute.&lt;BR /&gt;
    &lt;BR /&gt;
[/pre]&lt;BR /&gt;
      &lt;BR /&gt;
The only POSSIBLE thing I could think of was that OUTPUT.PDF was being used for FILE= for both outputs and that possibly a "ghost" Acrobat process was holding that name open. But I still got the message when I changed the name.&lt;BR /&gt;
&lt;BR /&gt;
I recommend contacting Tech Support with your program.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 23 Apr 2008 13:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12969#M3196</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-04-23T13:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12970#M3197</link>
      <description>Hi Cynthia, and thank you for the answer.&lt;BR /&gt;
&lt;BR /&gt;
Yes, this is exactly the message I got, but as my SAS session is in French, I didn't take the time to translate it.&lt;BR /&gt;
Your "ghost PDF" hypothesis does not sound bad, but how come it works without the {thispage} part ? If there was a conflict between ODS PDF and the PREIMAGE style attribute, it would happen with and without the FOOTNOTE statement.&lt;BR /&gt;
&lt;BR /&gt;
I have contacted the SAS Support yesterday, still waiting for an answer (if any, I will post it there).&lt;BR /&gt;
&lt;BR /&gt;
Olivier</description>
      <pubDate>Wed, 23 Apr 2008 14:20:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12970#M3197</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2008-04-23T14:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12971#M3198</link>
      <description>Olivier make allusion to the fact he is working in french &lt;BR /&gt;
and i was following this trend.&lt;BR /&gt;
But i have a more general remark who (which?) is just applying to&lt;BR /&gt;
the appearance of the trend&lt;BR /&gt;
&lt;BR /&gt;
Both Olivier and Cynthia have written very long messages  upon their screen&lt;BR /&gt;
 (without line break) and the conclusion is&lt;BR /&gt;
if ianybody want to keep a paper copy of an interesting solution&lt;BR /&gt;
he has difficulties even in reduced  view before printing as at 30% reduce &lt;BR /&gt;
the end of the lines are cutted.&lt;BR /&gt;
In landscape mode it happen me in the past on this forum &lt;BR /&gt;
having twice impossibility to print as reducing at 20% was not more readable&lt;BR /&gt;
and the end of the line were yet cutted.&lt;BR /&gt;
&lt;BR /&gt;
So if some explicit councel to writer could appear to avoid TOO LONG LINES&lt;BR /&gt;
and with also the trick [PRE] [\PRE]&lt;BR /&gt;
&lt;BR /&gt;
Many thanks Cynthia    for a direct answer (wielki@ined.fr)</description>
      <pubDate>Wed, 23 Apr 2008 15:04:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12971#M3198</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2008-04-23T15:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12972#M3199</link>
      <description>Hi, Andre:&lt;BR /&gt;
  When I'm pasting in code, I do try to use&lt;BR /&gt;
[-pre-] and [/-pre-]  (without the -) around the code&lt;BR /&gt;
(which typically makes the lines shorter).&lt;BR /&gt;
&lt;BR /&gt;
  But, I have to admit, I never thought about the possibility&lt;BR /&gt;
of people wanting to print the messages. So I typically&lt;BR /&gt;
don't put manual "carriage returns" or "hard returns"&lt;BR /&gt;
into my responses. The ability to search the forum&lt;BR /&gt;
postings electronically seems a better ability, to me,&lt;BR /&gt;
than flipping through hard copy paper. However,&lt;BR /&gt;
I will try to be aware of overly long lines in the future.&lt;BR /&gt;
 &lt;BR /&gt;
Thanks for the insight into how you use the forums.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 23 Apr 2008 15:59:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12972#M3199</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-04-23T15:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12973#M3200</link>
      <description>We have some internal logic errors when using images with Page x of y.  I could get into the nitty gritty details with you but let's just say it's a problem that we know about and are working diligently on to fix ASAP.</description>
      <pubDate>Thu, 24 Apr 2008 14:15:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12973#M3200</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2008-04-24T14:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODS ESCAPECHAR causes the procedure output to vanish in ODS PDF</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12974#M3201</link>
      <description>Thank you Scott.&lt;BR /&gt;
I was afraid I was missing something important, since there was no SAS Note in the Knowledge Database I could take trace of.&lt;BR /&gt;
I'll wait for any circumvention or fix as it comes out.&lt;BR /&gt;
&lt;BR /&gt;
Olivier</description>
      <pubDate>Thu, 24 Apr 2008 16:21:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-ESCAPECHAR-causes-the-procedure-output-to-vanish-in-ODS-PDF/m-p/12974#M3201</guid>
      <dc:creator>Olivier</dc:creator>
      <dc:date>2008-04-24T16:21:08Z</dc:date>
    </item>
  </channel>
</rss>

