<?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: Issue about table creation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940034#M954716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the amendments as suggested and it's worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Nov 2015 11:46:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-19T11:46:43Z</dc:date>
    <item>
      <title>Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940031#M954713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am relatively new to Qlikview development, and I am having issues with the script below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am joining two qvds (Script 1) which seems to be working well, however I want to use the joined information in a subsequent script (script 2) and I though that I would be able to use the name of ProductHeader, however the table name is not recognised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe I am misunderstanding how Qlikview names temporary tables, but any advice would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TmpProducts:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;InvoiceNumber&lt;/P&gt;&lt;P&gt;,InvoiceSuffix&lt;/P&gt;&lt;P&gt;,InvoiceJobReference&lt;/P&gt;&lt;P&gt;,InvoiceContainer&lt;/P&gt;&lt;P&gt;,SUM(Quantity) AS SUMQuantity&lt;/P&gt;&lt;P&gt;,SUM(Cartons) AS SUMCartons&lt;/P&gt;&lt;P&gt;,SUM(Cube) AS SUMCube&lt;/P&gt;&lt;P&gt;,SUM(FakeCube) AS SUMFakeCube&lt;/P&gt;&lt;P&gt;,SUM(ChargeableWeight) AS SUMChargeableWeight&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;\\test\Products.qvd (qvd)&lt;/P&gt;&lt;P&gt;GROUP BY&lt;/P&gt;&lt;P&gt;InvoiceNumber&lt;/P&gt;&lt;P&gt;,InvoiceSuffix&lt;/P&gt;&lt;P&gt;,InvoiceJobReference&lt;/P&gt;&lt;P&gt;,InvoiceContainer;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LEFT JOIN ([TmpProducts]) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;InvoiceNumber&lt;/P&gt;&lt;P&gt;,InvoiceSuffix&lt;/P&gt;&lt;P&gt;,InvoiceJobReference&lt;/P&gt;&lt;P&gt;,InvoiceContainer&lt;/P&gt;&lt;P&gt;,Quantity&lt;/P&gt;&lt;P&gt;,Cartons&lt;/P&gt;&lt;P&gt;,Cube&lt;/P&gt;&lt;P&gt;,FakeCube&lt;/P&gt;&lt;P&gt;,ChargeableWeight&lt;/P&gt;&lt;P&gt;FROM \&lt;SPAN style="font-size: 13.3333px;"&gt;\test\I&lt;/SPAN&gt;nvoiceHeader.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ProductHeader:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;InvoiceNumber&lt;/P&gt;&lt;P&gt;,InvoiceSuffix&lt;/P&gt;&lt;P&gt;,InvoiceJobReference&lt;/P&gt;&lt;P&gt;,InvoiceContainer&lt;/P&gt;&lt;P&gt;,Quantity&lt;/P&gt;&lt;P&gt;,Cartons&lt;/P&gt;&lt;P&gt;,Cube&lt;/P&gt;&lt;P&gt;,FakeCube&lt;/P&gt;&lt;P&gt;,ChargeableWeight&lt;/P&gt;&lt;P&gt;,SUMQuantity&lt;/P&gt;&lt;P&gt;,SUMCartons&lt;/P&gt;&lt;P&gt;,SUMCube&lt;/P&gt;&lt;P&gt;,SUMFakeCube&lt;/P&gt;&lt;P&gt;,SUMChargeableWeight&lt;/P&gt;&lt;P&gt;Resident TmpProducts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script 2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;InvoiceNumber&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;,InvoiceSuffix&lt;/P&gt;&lt;P&gt;,InvoiceJobReference&lt;/P&gt;&lt;P&gt;,InvoiceContainer&lt;/P&gt;&lt;P&gt;,SUMQuantity as TIHQuantity&lt;/P&gt;&lt;P&gt;,SUMCartons as TIHCartons&lt;/P&gt;&lt;P&gt;,SUMCube as TIHCube&lt;/P&gt;&lt;P&gt;,SUMFakeCube as TIHFakeCube&lt;/P&gt;&lt;P&gt;,SUMChargeableWeight as TIHChargeableWeight&lt;/P&gt;&lt;P&gt;Resident ProductHeader;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2020 18:02:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940031#M954713</guid>
      <dc:creator />
      <dc:date>2020-11-20T18:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940032#M954714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The table ProductHeader is not created because the data is appended to TmpProducts. That happens because it has exactly the same fields. If you add Noconcatenate to the load statement for ProductHeader then Qlikview will not concatenate those records to TmpProducts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;ProductHeader:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;STRONG&gt;Noconcatentate&lt;/STRONG&gt; LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;InvoiceNumber&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,InvoiceSuffix&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;...etc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 10:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940032#M954714</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-11-19T10:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940033#M954715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Your &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;&lt;STRONG&gt;ProductHeader &lt;/STRONG&gt;table, Columns are same as in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;TmpProducts.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;So ProductHeader table is auto concatenated to TmpProducts&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/STRONG&gt;Table.Then not exists now.&lt;/P&gt;&lt;P&gt;So there are 2 options to resolve this issues either you rename one column name in &lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;ProductHeader &lt;/STRONG&gt;Table or you need to Write noconcatenate keyword as suggested by G&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ysbert.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghvendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 10:56:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940033#M954715</guid>
      <dc:creator>raghvendrasingh</dc:creator>
      <dc:date>2015-11-19T10:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940034#M954716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the amendments as suggested and it's worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 11:46:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940034#M954716</guid>
      <dc:creator />
      <dc:date>2015-11-19T11:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940035#M954717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Raghvendra,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the alternative, I think i will try both methods and see which method works best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 11:47:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940035#M954717</guid>
      <dc:creator />
      <dc:date>2015-11-19T11:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue about table creation</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940036#M954718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Most Welcome Sandeep!!!!!!!!!!!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 11:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-about-table-creation/m-p/940036#M954718</guid>
      <dc:creator>raghvendrasingh</dc:creator>
      <dc:date>2015-11-23T11:25:57Z</dc:date>
    </item>
  </channel>
</rss>

