<?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: Subselect with Join for SAP KONV Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Subselect-with-Join-for-SAP-KONV-Table/m-p/1352869#M1230619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately the Subselect method does not support joins. Hope you can solve it some other way!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note that the usage of 'AS' in select statements is not supported by the SQL connector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT EKKO~KNUMV&lt;/P&gt;&lt;P&gt;FROM EKKO&lt;/P&gt;&lt;P&gt;INNER JOIN EKPO ON EKKO~EBELN = EKPO~EBELN&lt;/P&gt;&lt;P&gt;WHERE EKPO~AEDAT BETWEEN '20080601'&lt;/P&gt;&lt;P&gt;AND '20160630' AND EKPO~LOEKZ &amp;lt;&amp;gt; 'L';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hakan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Apr 2017 07:40:02 GMT</pubDate>
    <dc:creator>Hakan_Ronningberg</dc:creator>
    <dc:date>2017-04-21T07:40:02Z</dc:date>
    <item>
      <title>Subselect with Join for SAP KONV Table</title>
      <link>https://community.qlik.com/t5/QlikView/Subselect-with-Join-for-SAP-KONV-Table/m-p/1352868#M1230617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I am working on building a load script for KONV that loads records based on changes occurring at the PO line item level (EKPO).&amp;nbsp; Below is the subselect query that I am trying to use:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;SQL&lt;/STRONG&gt;&lt;/SPAN&gt; SUBSELECT KSCHL KOPOS ...&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; FROM KONV&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; WHERE KNUMV IN ( &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; SELECT h~KNUMV AS KNUMV&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; FROM EKKO AS h&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; INNER JOIN EKPO AS l ON h~EBELN = l~EBELN&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; WHERE l~AEDAT BETWEEN '20080601' AND '20160630' AND l~LOEKZ &amp;lt;&amp;gt; 'L'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; ); &lt;/SPAN&gt;&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;SPAN&gt;However, it appears that I can't perform joins within a subselect.&amp;nbsp; I also tried performing the join first and loading it into a table in memory and then using that table within the subselect as follows:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;KNUMV_TEMP:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT h~KNUMV AS KNUMV&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM EKKO AS h&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;INNER JOIN EKPO AS l ON h~EBELN = l~EBELN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;WHERE l~AEDAT BETWEEN '20080601' AND '20160630' AND l~LOEKZ &amp;lt;&amp;gt; 'L';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;SQL&lt;/STRONG&gt;&lt;/SPAN&gt; SUBSELECT KSCHL KOPOS ...&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; FROM KONV&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; WHERE KNUMV IN ( &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;SELECT KNUMV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;RESIDENT KNUMV_TEMP&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;This also doesn't seem to work.&amp;nbsp; Is something like this even possible in QlikView? I appreciate any feedback/thoughts/help that anybody out there might have.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 21:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subselect-with-Join-for-SAP-KONV-Table/m-p/1352868#M1230617</guid>
      <dc:creator />
      <dc:date>2026-01-26T21:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Subselect with Join for SAP KONV Table</title>
      <link>https://community.qlik.com/t5/QlikView/Subselect-with-Join-for-SAP-KONV-Table/m-p/1352869#M1230619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately the Subselect method does not support joins. Hope you can solve it some other way!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note that the usage of 'AS' in select statements is not supported by the SQL connector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT EKKO~KNUMV&lt;/P&gt;&lt;P&gt;FROM EKKO&lt;/P&gt;&lt;P&gt;INNER JOIN EKPO ON EKKO~EBELN = EKPO~EBELN&lt;/P&gt;&lt;P&gt;WHERE EKPO~AEDAT BETWEEN '20080601'&lt;/P&gt;&lt;P&gt;AND '20160630' AND EKPO~LOEKZ &amp;lt;&amp;gt; 'L';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hakan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 07:40:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subselect-with-Join-for-SAP-KONV-Table/m-p/1352869#M1230619</guid>
      <dc:creator>Hakan_Ronningberg</dc:creator>
      <dc:date>2017-04-21T07:40:02Z</dc:date>
    </item>
  </channel>
</rss>

