<?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 i have a syntax problem in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768638#M243807</link>
    <description>&lt;P&gt;am running the below code, however am getting this error message on the log..&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%INCLUDE "&amp;amp;PATH./TRANSFORM_BRACC_CARD.sas";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt;ERROR 73-322: Expecting an ON.

ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Sep 2021 19:37:32 GMT</pubDate>
    <dc:creator>VALLY</dc:creator>
    <dc:date>2021-09-20T19:37:32Z</dc:date>
    <item>
      <title>i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768638#M243807</link>
      <description>&lt;P&gt;am running the below code, however am getting this error message on the log..&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%INCLUDE "&amp;amp;PATH./TRANSFORM_BRACC_CARD.sas";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt;ERROR 73-322: Expecting an ON.

ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 19:37:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768638#M243807</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-09-20T19:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768639#M243808</link>
      <description>You need to examine the original program that you're submitting with the %INCLUDE statement. It seems as though a PROC SQL query within that script doesn't have a JOIN condition. I would search the script for any PROC SQL queries, and look for those missing an ON or a WHERE statement that joins the two or more tables together.</description>
      <pubDate>Mon, 20 Sep 2021 19:36:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768639#M243808</guid>
      <dc:creator>maguiremq</dc:creator>
      <dc:date>2021-09-20T19:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768643#M243809</link>
      <description>&lt;P&gt;Show us the entire log, please, in order, with nothing chopped out. It doesn't help us to see the ERROR message separated from the code that caused the ERROR as you have provided it.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please format the log properly, so we can read it effectively. To do this, copy the log as text and paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon — &lt;STRONG&gt;do not skip this step&lt;/STRONG&gt; or we will just ask again for properly formatted log.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 19:38:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768643#M243809</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-09-20T19:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768644#M243810</link>
      <description>&lt;P&gt;FYI - I've formatted your question. Please use the code blocks for code, not spoilers unless your code is really long and do not nest spoilers. &lt;BR /&gt;&lt;BR /&gt;You need to show the actual code. You can add the SOURCE2 option in the %INCLUDE so that the full log is generated to help with debugging.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%INCLUDE "&amp;amp;PATH./TRANSFORM_BRACC_CARD.sas" /SOURCE2;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Doc reference:&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/vdmmlcdc/1.0/lestmtsref/p1s3uhhqtscz2sn1otiatbovfn1t.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/vdmmlcdc/1.0/lestmtsref/p1s3uhhqtscz2sn1otiatbovfn1t.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 19:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768644#M243810</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-09-20T19:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768647#M243812</link>
      <description>Run it with the SOURCE2 option so the log indicates the error in the correct place and post only the code up to the first set of errors.</description>
      <pubDate>Mon, 20 Sep 2021 19:48:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768647#M243812</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-09-20T19:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768648#M243813</link>
      <description>&lt;P&gt;Please follow&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s advice and use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%INCLUDE "&amp;amp;PATH./TRANSFORM_BRACC_CARD.sas" /SOURCE2;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and then show us the properly formatted log, as requested earlier: "&lt;SPAN&gt;Please format the log properly, so we can read it effectively. To do this, copy the log as text and paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon —&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;do not skip this step&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;or we will just ask again for properly formatted log."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 19:48:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768648#M243813</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-09-20T19:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768650#M243814</link>
      <description>&lt;P&gt;Are you sure you should be sharing this information publicly????&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Sep 2021 20:04:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768650#M243814</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-09-20T20:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768652#M243815</link>
      <description>No, can you please delete this post, please</description>
      <pubDate>Mon, 20 Sep 2021 19:58:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768652#M243815</guid>
      <dc:creator>VALLY</dc:creator>
      <dc:date>2021-09-20T19:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: i have a syntax problem</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768659#M243818</link>
      <description>I cannot delete your post - it's too much text and my browser keeps freezing. You should be able to click the three dots beside your previous post and delete it. &lt;BR /&gt;The answer is still the same anyways, add source2 run the full code and post up to the error in the log, hiding any proprietary information as needed. In general, never a good idea to dump your full log and code as you've done here. No offense, but very few people are going to slog through a log that size on a user supported forum. &lt;BR /&gt;If you need help still, I would advise you to work with SAS Tech Support instead.</description>
      <pubDate>Mon, 20 Sep 2021 20:29:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-syntax-problem/m-p/768659#M243818</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-09-20T20:29:59Z</dc:date>
    </item>
  </channel>
</rss>

