<?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 gchart issue in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/proc-gchart-issue/m-p/208331#M7796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;rsubmit;&lt;/P&gt;&lt;P&gt;proc printto print='/home/*****/prdsale';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=unixlib.PRDSALE out=prdsale;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gchart data=unixlib.prdsale;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vbar country / sumvar=actual discrete;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am remote submitting above code from mainframe to unix and prdsale has been creating with '0' records. please find the below detials of unix. Please advise is there any thing am I missing. Your help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;STRONG&gt; 0 Jul 22 02:26 prdsale&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jul 2015 06:41:01 GMT</pubDate>
    <dc:creator>Cherry</dc:creator>
    <dc:date>2015-07-22T06:41:01Z</dc:date>
    <item>
      <title>proc gchart issue</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gchart-issue/m-p/208331#M7796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;rsubmit;&lt;/P&gt;&lt;P&gt;proc printto print='/home/*****/prdsale';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=unixlib.PRDSALE out=prdsale;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gchart data=unixlib.prdsale;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vbar country / sumvar=actual discrete;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by region;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am remote submitting above code from mainframe to unix and prdsale has been creating with '0' records. please find the below detials of unix. Please advise is there any thing am I missing. Your help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;STRONG&gt; 0 Jul 22 02:26 prdsale&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 06:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gchart-issue/m-p/208331#M7796</guid>
      <dc:creator>Cherry</dc:creator>
      <dc:date>2015-07-22T06:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: proc gchart issue</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/proc-gchart-issue/m-p/208332#M7797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi: Proc PRINTTO captures procedure output that would normally go to the LISTING window (or that might be considered a VISIBLE report). With the code you show, there is NOTHING going to the LISTING window. PROC SORT only writes messages to the LOG and PROC GCHART will write to a Graph catalog and then to the interactive GRAPH window. PROC PRINTTO is just an ASCII text file. So it will not, for example, be able to hold an IMAGE file created by GCHART, such as PDF, RTF or HTML would be able to do.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Have you tried using ODS??? Assuming you have write access to the HOME directory, you should be able to create files in that location using ODS:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;rsubmit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;** try SASHELP.PRDSALE instead of UNIXLIB.PRDSALE as a test;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc sort data=sashelp.PRDSALE out=prdsale;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;by region;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;** use ODS instead of PROC PRINTTO;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods pdf file='/home/*****/prdsale_test.pdf';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods rtf file='/home/*****/prdsale_test.rtf';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods html path='/home/*****/' (url=none) file='prdsale_test.html';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;proc gchart data=prdsale;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;vbar country / sumvar=actual discrete;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;by region;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;** then go look in the /home directory to find the files;&lt;/STRONG&gt;&lt;/SPAN&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;endrsubmit;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;I do not have a Unix system to test with using RSUBMIT/ENDRSUBMIT -- but when I tested the code on my UNIX system using SASHELP.PRDSALE, I did successfully get 3 output files in my defined directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; So if you need help getting the path correct, you may need to work with Tech Support on that.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 16:18:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/proc-gchart-issue/m-p/208332#M7797</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2015-07-24T16:18:06Z</dc:date>
    </item>
  </channel>
</rss>

