<?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 output from my SAS program. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705444#M216418</link>
    <description>&lt;P&gt;When you run this code, are there ERRORs or WARNINGs in the log? If so, what do they say?&lt;/P&gt;</description>
    <pubDate>Sat, 12 Dec 2020 14:30:36 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-12-12T14:30:36Z</dc:date>
    <item>
      <title>ODS output from my SAS program.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705443#M216417</link>
      <description>&lt;PRE&gt;libname a "/stage_1/download/backup/adhoc/kyccrs/120720/thd_best_r50/";
ods listing close;
ods pdf  file='/etl/home/rrtqarun/data/aml/Datasets/cardholder/sb56634/myfile.pdf';
proc tabulate data= a.best120720;
class R50_COLLST U50_PGIND;
var R50_DTCOLLST;
table U50_PGIND ="Business Liability",R50_DTCOLLST="closed date"*mean=" " * ( R50_COLLST= " " all);
ods pdf close;
ods listing;
run;

&lt;/PRE&gt;
&lt;P&gt;hello ,&lt;/P&gt;
&lt;P&gt;Please find above my code, where i don't know why&amp;nbsp;code is not&amp;nbsp;&lt;SPAN&gt;written it to the specified folder&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;/etl/home/rrtqarun/data/aml/Datasets/cardholder/sb56634/myfile.pdf&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;i.e in the above path no myfile.pdf&amp;nbsp; is present . why ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;please help !!! thanks in advance.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 14:22:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705443#M216417</guid>
      <dc:creator>librasonali</dc:creator>
      <dc:date>2020-12-12T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: ODS output from my SAS program.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705444#M216418</link>
      <description>&lt;P&gt;When you run this code, are there ERRORs or WARNINGs in the log? If so, what do they say?&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 14:30:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705444#M216418</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-12T14:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODS output from my SAS program.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705447#M216419</link>
      <description>&lt;P&gt;No ERROR are there..&amp;nbsp; Please find below snippet of log file.&lt;/P&gt;
&lt;PRE&gt;NOTE: AUTOEXEC processing completed.

1          libname a "/stage_1/download/backup/adhoc/kyccrs/120720/thd_best_r50/";
NOTE: Libref A was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: /stage_1/download/backup/adhoc/kyccrs/120720/thd_best_r50
2          ods listing close;
3          ods pdf  file='/etl/home/rrtqarun/data/aml/Datasets/cardholder/sb56634/myhtmlfile.pdf';
NOTE: Writing ODS PDF output to DISK destination "/etl/home/rrtqarun/data/aml/Datasets/cardholder/sb56634/myhtmlfile.pdf", 
      printer "PDF".
4          proc tabulate data= a.best120720;
5          class R50_COLLST U50_PGIND;
6          var R50_DTCOLLST;
7          table U50_PGIND ="Business Liability",R50_DTCOLLST="closed date"*mean=" " * ( R50_COLLST= " " all);
8          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.)
9          ods listing;
10         run;

NOTE: There were 297601 observations read from the data set A.BEST120720.
NOTE: The PROCEDURE TABULATE printed pages 1-2.
&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Dec 2020 14:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705447#M216419</guid>
      <dc:creator>librasonali</dc:creator>
      <dc:date>2020-12-12T14:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODS output from my SAS program.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705448#M216420</link>
      <description>&lt;P&gt;hey now it's created i placed run before ods pdf close ; statement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 14:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705448#M216420</guid>
      <dc:creator>librasonali</dc:creator>
      <dc:date>2020-12-12T14:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS output from my SAS program.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705451#M216422</link>
      <description>&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Maxims-of-Maximally-Efficient-SAS-Programmers/ta-p/352068" target="_self"&gt;Maxim 2&lt;/A&gt;: read the log.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 15:37:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-output-from-my-SAS-program/m-p/705451#M216422</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-12T15:37:01Z</dc:date>
    </item>
  </channel>
</rss>

