<?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: How do I fix ODS PDF error in JCL in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692562#M24588</link>
    <description>&lt;P&gt;np.. I changed the code to use FILREF. Still getting same error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;//SAS.SYSIN DD *&lt;BR /&gt;OPTIONS NOERRABEND;&lt;BR /&gt;FILENAME OUTPDF 'TEST.SAS.PDF' DISP=MOD;&lt;BR /&gt;DATA X;&lt;BR /&gt;INFILE IN;&lt;BR /&gt;INPUT @1 NAME $126.;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;ods pdf file=OUTPDF;&lt;BR /&gt;PROC PRINT DATA=X;&lt;BR /&gt;RUN;&lt;BR /&gt;ODS PDF CLOSE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Error&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;NOTE: The address space has used a maximum of 1052K below the line and 29596K above the line.&lt;BR /&gt;7&lt;BR /&gt;8 ods _all_ close;&lt;BR /&gt;9 ods pdf file=OUTPDF;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ERROR: .&lt;/STRONG&gt; &lt;/FONT&gt;&lt;BR /&gt;10 PROC PRINT DATA=X;&lt;BR /&gt;11 RUN;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Oct 2020 13:44:58 GMT</pubDate>
    <dc:creator>kris001</dc:creator>
    <dc:date>2020-10-19T13:44:58Z</dc:date>
    <item>
      <title>How do I fix ODS PDF error in JCL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692377#M24583</link>
      <description>&lt;P&gt;I have a PS file of FB 200 and I am using SAS (9.4) in JCL to create PDF. Below code I used in JCL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//SAS.SYSIN DD *&lt;BR /&gt;OPTIONS NOERRABEND;&lt;BR /&gt;DATA X;&lt;BR /&gt;INFILE IN;&lt;BR /&gt;INPUT @1 NAME $128.;&lt;BR /&gt;RUN;&lt;BR /&gt;FILENAME OUTPDF 'TEST.SAS.PDF' DISP=MOD;&lt;BR /&gt;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;ods pdf file='test.sas.pdf';&lt;BR /&gt;PROC PRINT DATA=X;&lt;BR /&gt;RUN;&lt;BR /&gt;ODS PDF CLOSE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the job is giving return code 08 with SAS log statements as below.&lt;/P&gt;&lt;P&gt;I am unable to figure out what is the error in the statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: The address space has used a maximum of 1052K below the line and 29596K above the line.&lt;BR /&gt;2 The SAS System&lt;BR /&gt;&lt;BR /&gt;6 FILENAME OUTPDF 'TEST.SAS.PDF' DISP=MOD;&lt;BR /&gt;7&lt;BR /&gt;8 ods _all_ close;&lt;BR /&gt;9 ods pdf file='test.sas.pdf';&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: . &lt;/FONT&gt;&lt;BR /&gt;10 PROC PRINT DATA=X;&lt;BR /&gt;11 RUN;&lt;BR /&gt;&lt;BR /&gt;NOTE: Due to ERROR(s) above, SAS set option OBS=0, enabling syntax check mode.&lt;BR /&gt;This prevents execution of subsequent data modification statements.&lt;BR /&gt;NOTE: The PROCEDURE PRINT used 0.00 CPU seconds and 37787K.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Oct 2020 17:25:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692377#M24583</guid>
      <dc:creator>kris001</dc:creator>
      <dc:date>2020-10-18T17:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I fix ODS PDF error in JCL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692401#M24585</link>
      <description>&lt;P&gt;Try using your FILEREF rather than the actual file name:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file=outpdf;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 18 Oct 2020 20:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692401#M24585</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-10-18T20:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I fix ODS PDF error in JCL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692562#M24588</link>
      <description>&lt;P&gt;np.. I changed the code to use FILREF. Still getting same error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;//SAS.SYSIN DD *&lt;BR /&gt;OPTIONS NOERRABEND;&lt;BR /&gt;FILENAME OUTPDF 'TEST.SAS.PDF' DISP=MOD;&lt;BR /&gt;DATA X;&lt;BR /&gt;INFILE IN;&lt;BR /&gt;INPUT @1 NAME $126.;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;ods _all_ close;&lt;BR /&gt;ods pdf file=OUTPDF;&lt;BR /&gt;PROC PRINT DATA=X;&lt;BR /&gt;RUN;&lt;BR /&gt;ODS PDF CLOSE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Error&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;NOTE: The address space has used a maximum of 1052K below the line and 29596K above the line.&lt;BR /&gt;7&lt;BR /&gt;8 ods _all_ close;&lt;BR /&gt;9 ods pdf file=OUTPDF;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ERROR: .&lt;/STRONG&gt; &lt;/FONT&gt;&lt;BR /&gt;10 PROC PRINT DATA=X;&lt;BR /&gt;11 RUN;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 13:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/692562#M24588</guid>
      <dc:creator>kris001</dc:creator>
      <dc:date>2020-10-19T13:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I fix ODS PDF error in JCL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/694344#M24616</link>
      <description>&lt;P&gt;Hi. Do you have the ability to review the full output from your process? Or can you provide the full JCL you are using? As a small guide, when I generate PDF's in the IBM Z/os environment I use the following DD....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;//PDFFILE DD DSN=FIPP.I.DAILY.NAG, &lt;BR /&gt;// DISP=(,DELETE,DELETE), &lt;BR /&gt;// SPACE=(TRK,(100,10),RLSE)&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 20:41:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-I-fix-ODS-PDF-error-in-JCL/m-p/694344#M24616</guid>
      <dc:creator>LionelT</dc:creator>
      <dc:date>2020-10-26T20:41:06Z</dc:date>
    </item>
  </channel>
</rss>

