<?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: Help with Load * INLINE and where exist in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358673#M133094</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't you miss a semicolon (' ; ') before the last drop table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I think it should be the field name DirectOrg instead of table name DirOrgList in the where exists clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2012 13:49:01 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-07-19T13:49:01Z</dc:date>
    <item>
      <title>Help with Load * INLINE and where exist</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358672#M133093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13427052455766124" jivemacro_uid="_13427052455766124"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;I need some help with this script why I got this error message after load the script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Garbage after statement&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;EmplHist:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD EMPL_ID,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; FULL_NAME,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; Status,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; HOME_ORG_ID,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; TITLE_DESC,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; GLC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;RESIDENT TempEmployeeHist&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;WHERE EXISTS (DirOrgList, HOME_ORG_ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;DROP TABLE TempEmployeeHist&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// First Tab:&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;// List of ORG ID containing Direct Billable Rate&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;DirOrgList:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt; DirectOrg&lt;/P&gt;&lt;P&gt; '1.ABP.HLT.24'&lt;/P&gt;&lt;P&gt; '1.ABP.HLT.57'&lt;/P&gt;&lt;P&gt; '1.ABP.HSV.25'&lt;/P&gt;&lt;P&gt; '1.ABP.HSV.58'&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Second Tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempEmployeeHist:&lt;BR /&gt;LOAD&amp;nbsp;&amp;nbsp; EMPL_ID,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAST_NAME &amp;amp; ', '&amp;amp; FIRST_NAME as [FULL_NAME],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; S_EMPL_STATUS_CD as Status;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM $(vSchemaOwner).EMPL;&lt;/P&gt;&lt;P&gt;LEFT JOIN (TempEmployeeHist)&lt;BR /&gt;LOAD&amp;nbsp;&amp;nbsp; EMPL_ID,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORG_ID as [HOME_ORG_ID],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TITLE_DESC,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GENL_LAB_CAT_CD as GLC,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE(END_DT);&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;BR /&gt;FROM $(vSchemaOwner).EMPL_LAB_INFO;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//***********************&lt;BR /&gt;EmplHist:&lt;BR /&gt;LOAD EMPL_ID,&lt;BR /&gt;&amp;nbsp; FULL_NAME,&lt;BR /&gt;&amp;nbsp; Status,&lt;BR /&gt;&amp;nbsp; HOME_ORG_ID,&lt;BR /&gt;&amp;nbsp; TITLE_DESC,&lt;BR /&gt;&amp;nbsp; GLC&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;RESIDENT TempEmployeeHist&lt;BR /&gt;WHERE EXISTS&amp;nbsp; (DirOrgList, HOME_ORG_ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE TempEmployeeHist;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13427053151998032" jivemacro_uid="_13427053151998032"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2012 13:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358672#M133093</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-19T13:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load * INLINE and where exist</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358673#M133094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't you miss a semicolon (' ; ') before the last drop table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I think it should be the field name DirectOrg instead of table name DirOrgList in the where exists clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2012 13:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358673#M133094</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-19T13:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load * INLINE and where exist</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358674#M133095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you It's work now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2012 13:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358674#M133095</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-19T13:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load * INLINE and where exist</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358675#M133096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lot !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2012 13:57:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-INLINE-and-where-exist/m-p/358675#M133096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-19T13:57:24Z</dc:date>
    </item>
  </channel>
</rss>

