<?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 proc print in DI Job in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134380#M10923</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using Proc print statement in DI Job, When i am testing thru DI job, its writing output into output window by default. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont want to write the output into output window, Can u please suggest the option to control this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jun 2014 09:59:15 GMT</pubDate>
    <dc:creator>sunilreddy</dc:creator>
    <dc:date>2014-06-09T09:59:15Z</dc:date>
    <item>
      <title>proc print in DI Job</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134380#M10923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am using Proc print statement in DI Job, When i am testing thru DI job, its writing output into output window by default. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont want to write the output into output window, Can u please suggest the option to control this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 09:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134380#M10923</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-06-09T09:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: proc print in DI Job</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134381#M10924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What would you like it to output to?&amp;nbsp; In base SAS output destination is set with the ods command, e.g. for rtf: ods rtf file="...."; &lt;/P&gt;&lt;P&gt;There are various options for ods (output delivery system), so perhaps read on that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 10:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134381#M10924</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-09T10:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc print in DI Job</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134382#M10925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using below statements to write sas dataset output to csv file. &lt;/P&gt;&lt;P&gt;ods tagsets.csvall options(sheet_name="Test");&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proc Print data=data1 noobs width=full style(data)={background=white};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;ods tagsets.csvall close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i am running it in DI job thru DI studo, dataset output is writing in output window. Is thr any way to suppress the proc print output in below output window only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://communities.sas.com/legacyfs/online/6555_pastedImage_4.png" style="width: 349px; height: 319px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 10:49:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134382#M10925</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2014-06-09T10:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc print in DI Job</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134383#M10926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I think you are mixed up a bit there.&amp;nbsp; Firstly there is no CSV tagset.&amp;nbsp; Secondly it seems you are trying to output to Excel as you specify a "Sheet" which CSV wouldn't have.&amp;nbsp; You have then not supplied a filename to output to.&amp;nbsp; What I think you need is:&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods noresults;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file="your output file" options (sheet_name="Test");&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proc Print data=data1 noobs width=full style(data)={background=white};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 11:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134383#M10926</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-09T11:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: proc print in DI Job</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134384#M10927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi, there ARE 3 CSV tagset template-based destinations: CSVALL, CSV and CSVBYLINE. But you are correct that SHEET_NAME and other ODS STYLE overrides are irrelevant to the CSV-based destinations. For example, if you run this code, you will get 3 different CSV files. Only in the last one will you see the SAS Title and, the SHEET_NAME suboption will be ignored.&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc sort data=sashelp.class out=class;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;by age name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods csv file='c:\temp\simple_csv.csv';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.csvbyline file='c:\temp\csv_byline.csv';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods tagsets.csvall file='c:\temp\csv_all.csv' options(sheet_name='Test');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc print data=class;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;by age;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title 'The Students';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 19:39:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/proc-print-in-DI-Job/m-p/134384#M10927</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-06-09T19:39:05Z</dc:date>
    </item>
  </channel>
</rss>

