<?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: Generic load in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866761#M71562</link>
    <description>&lt;P&gt;Thanks Marco&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 04 Dec 2021 15:16:02 GMT</pubDate>
    <dc:creator>Ayden</dc:creator>
    <dc:date>2021-12-04T15:16:02Z</dc:date>
    <item>
      <title>Generic load</title>
      <link>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866295#M71515</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;am trying to join a table that uses the GENERIC LOAD FUNCTION to another table how can I achieve this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;part,&lt;/P&gt;
&lt;P&gt;delivery_date,&lt;/P&gt;
&lt;P&gt;next_delivery_date&lt;/P&gt;
&lt;P&gt;from abc;&lt;/P&gt;
&lt;P&gt;left join Generic Load&lt;/P&gt;
&lt;P&gt;part,&lt;/P&gt;
&lt;P&gt;Qty,&lt;/P&gt;
&lt;P&gt;Location&lt;/P&gt;
&lt;P&gt;From xyz ;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 04:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866295#M71515</guid>
      <dc:creator>Ayden</dc:creator>
      <dc:date>2021-12-03T04:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Generic load</title>
      <link>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866354#M71519</link>
      <description>&lt;P&gt;Hi, Generic creates different tables, one for each attribute, wich should be the 2nd field of the load.&lt;/P&gt;
&lt;P&gt;Take a look at this blog post to understand what generic does:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Generic-Load/ba-p/1473470" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Generic-Load/ba-p/1473470&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Instead on doing a left join with&amp;nbsp;&lt;SPAN&gt;CombinedGenericTable, do the left join with your main table.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 07:48:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866354#M71519</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2021-12-03T07:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Generic load</title>
      <link>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866644#M71547</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;table1:
LOAD part,
     delivery_date,
     next_delivery_date
From abc;

table2:
Generic
LOAD part,
     Qty,
     Location
From xyz;

FOR i = NoOfTables()-1 to 0 STEP -1
  LET vTable=TableName($(i));
  IF WildMatch('$(vTable)', 'table2.*') THEN
    LEFT JOIN (table1) LOAD * RESIDENT [$(vTable)];
    DROP TABLE [$(vTable)];
  ENDIF
NEXT i&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope this helps&lt;/P&gt;
&lt;P&gt;Marco&lt;/P&gt;</description>
      <pubDate>Fri, 03 Dec 2021 17:16:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866644#M71547</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2021-12-03T17:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Generic load</title>
      <link>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866761#M71562</link>
      <description>&lt;P&gt;Thanks Marco&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 15:16:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Generic-load/m-p/1866761#M71562</guid>
      <dc:creator>Ayden</dc:creator>
      <dc:date>2021-12-04T15:16:02Z</dc:date>
    </item>
  </channel>
</rss>

