<?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 ERROR: Unresolved reference to table/correlation name TI in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670383#M79226</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table JDC_Graduation as 
select T2.MAJOR_CODE, 
       count(distinct T1.UID) as InitialCohort,
       count(distinct T2.BA_GRAD_4_YEAR) as BA_4_YEAR,
	   (calculated BA_4_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_4YR,
       count(distinct T2.BA_GRAD_5_YEAR) as BA_5_YEAR,
	   (calculated BA_5_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_5YR,
       count(distinct T2.BA_GRAD_6_YEAR) as BA_6_YEAR,
	   (calculated BA_6_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_6YR
from Work.Journalism_Graduation (where=(STU_RECENT_ADM_TYP ='B' AND MAJOR IN ('MJM', 'MDJ', 'COM','MAS','JMS'))) T1
LEFT JOIN Work.Journalism_Graduation (where=(MAJOR_CODE IN ('MJM', 'MDJ', 'COM','MAS','JMS'))) T2 ON TI.UID = T2.UID
GROUP BY T2.MAJOR_CODE;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xliu1_0-1595104328418.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47289iB45ABB41A396CEB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xliu1_0-1595104328418.png" alt="xliu1_0-1595104328418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with this error message in sas log. How should I fix the syntax? Thanks.&lt;/P&gt;</description>
    <pubDate>Sat, 18 Jul 2020 20:32:38 GMT</pubDate>
    <dc:creator>xliu1</dc:creator>
    <dc:date>2020-07-18T20:32:38Z</dc:date>
    <item>
      <title>ERROR: Unresolved reference to table/correlation name TI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670383#M79226</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table JDC_Graduation as 
select T2.MAJOR_CODE, 
       count(distinct T1.UID) as InitialCohort,
       count(distinct T2.BA_GRAD_4_YEAR) as BA_4_YEAR,
	   (calculated BA_4_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_4YR,
       count(distinct T2.BA_GRAD_5_YEAR) as BA_5_YEAR,
	   (calculated BA_5_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_5YR,
       count(distinct T2.BA_GRAD_6_YEAR) as BA_6_YEAR,
	   (calculated BA_6_YEAR/calculated InitialCohort)*100 as JDC_GRAD_Rate_6YR
from Work.Journalism_Graduation (where=(STU_RECENT_ADM_TYP ='B' AND MAJOR IN ('MJM', 'MDJ', 'COM','MAS','JMS'))) T1
LEFT JOIN Work.Journalism_Graduation (where=(MAJOR_CODE IN ('MJM', 'MDJ', 'COM','MAS','JMS'))) T2 ON TI.UID = T2.UID
GROUP BY T2.MAJOR_CODE;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xliu1_0-1595104328418.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47289iB45ABB41A396CEB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xliu1_0-1595104328418.png" alt="xliu1_0-1595104328418.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with this error message in sas log. How should I fix the syntax? Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2020 20:32:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670383#M79226</guid>
      <dc:creator>xliu1</dc:creator>
      <dc:date>2020-07-18T20:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Unresolved reference to table/correlation name TI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670384#M79227</link>
      <description>&lt;P&gt;First, correct the typo &lt;FONT face="courier new,courier" size="5"&gt;T&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;I&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;→ &lt;FONT face="courier new,courier" size="5"&gt;T&lt;FONT color="#008000"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;. Then rerun the code and check the log again.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2020 20:50:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670384#M79227</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-07-18T20:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Unresolved reference to table/correlation name TI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670385#M79228</link>
      <description>&lt;P&gt;From now on, please do not provide logs as screen captures. The better way to provide the log is to ccopy it as text, and then paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon. This would make everyone happier.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2020 20:46:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670385#M79228</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-18T20:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Unresolved reference to table/correlation name TI</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670386#M79229</link>
      <description>&lt;P&gt;Thanks. It is a typo that I did not notice.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2020 20:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unresolved-reference-to-table-correlation-name-TI/m-p/670386#M79229</guid>
      <dc:creator>xliu1</dc:creator>
      <dc:date>2020-07-18T20:52:14Z</dc:date>
    </item>
  </channel>
</rss>

