<?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: some problem of a &amp;quot; in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/some-problem-of-a-quot/m-p/984540#M14332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jhonatan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am assuming that this is the same post as the other one. So the solutions the same. Use No Concatenate before the load statement of table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Inv_Sales_temp.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2015 09:42:21 GMT</pubDate>
    <dc:creator>reddy-s</dc:creator>
    <dc:date>2015-12-10T09:42:21Z</dc:date>
    <item>
      <title>some problem of a "</title>
      <link>https://community.qlik.com/t5/App-Development/some-problem-of-a-quot/m-p/984539#M14331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have this table :&lt;/P&gt;&lt;P&gt;Custs:&lt;/P&gt;&lt;P&gt;//טבלת לקוחות&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;CUSTNAME AS CUST_CUSTNAME,&lt;/P&gt;&lt;P&gt;CUST AS CUST_CUST,&lt;/P&gt;&lt;P&gt;ADDRESS AS CUST_ADDRESS, &lt;/P&gt;&lt;P&gt;CURRENCY AS CUST_CURRENCY, &lt;/P&gt;&lt;P&gt;CUSTDES AS CUST_CUSTDES&lt;/P&gt;&lt;P&gt;FROM [lib://CLINTON_SAMPLE/customers.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i am trying to run this :&lt;/P&gt;&lt;P&gt;Inv_Sales_temp: //טבלת מכירות כללית&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date (IVDATE/60/24+32143,'DD/MM/YYYY') AS INV_IVDATE,&lt;/P&gt;&lt;P&gt;IVNUM AS INV_INVNUM,&lt;/P&gt;&lt;P&gt;DOC AS INV_DOC,&lt;/P&gt;&lt;P&gt;IV,&lt;/P&gt;&lt;P&gt;QPRICE AS INV_QPRICE,&lt;/P&gt;&lt;P&gt;TOTPRICE AS INV_TOTPRICE,&lt;/P&gt;&lt;P&gt;"CURRENCY" AS INV_CURRENCY,&lt;/P&gt;&lt;P&gt;CUST AS INV_CUST,&lt;/P&gt;&lt;P&gt;DEBIT,&lt;/P&gt;&lt;P&gt;VAT&amp;nbsp; AS INV_VAT,&lt;/P&gt;&lt;P&gt;UDATE AS INV_UDATE,&lt;/P&gt;&lt;P&gt;PRINTED AS INV_PRINTED,&lt;/P&gt;&lt;P&gt;FINAL AS INV_FINAL,&lt;/P&gt;&lt;P&gt;ORD AS INV_ORD ,&lt;/P&gt;&lt;P&gt;DISCOUNT,&lt;/P&gt;&lt;P&gt;DISPRICE AS INV_DISCOUNT,&lt;/P&gt;&lt;P&gt;PAYDATE AS INV_PAYDATE,&lt;/P&gt;&lt;P&gt;FNCTRANS AS INV_FNCTRANS,&lt;/P&gt;&lt;P&gt;BOOKNUM AS INV_BOOKNUM,&lt;/P&gt;&lt;P&gt;AGENT AS INV_AGENT,&lt;/P&gt;&lt;P&gt;TYPE AS INV_TYPE,&lt;/P&gt;&lt;P&gt;CHECKING AS INV_CHECKING,&lt;/P&gt;&lt;P&gt;IMPFILE AS INV_IMPFILE,&lt;/P&gt;&lt;P&gt;STORNOFLAG AS INV_STORNOFLAG,&lt;/P&gt;&lt;P&gt;BRANCH AS INV_BRANCH &lt;/P&gt;&lt;P&gt;FROM [lib://CLINTON_SAMPLE/Invoices.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//פרטי ת.יומן&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Left join&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;FNCTRANS AS INV_FNCTRANS,&lt;/P&gt;&lt;P&gt;FNCNUM,FINAL as FNC_FINAL,&lt;/P&gt;&lt;P&gt;CURDATE AS FNC_CURDATE,&lt;/P&gt;&lt;P&gt;FNCDATE, &lt;/P&gt;&lt;P&gt;EXCHANGE3 AS FNC_EXCHANGE3, &lt;/P&gt;&lt;P&gt;CURRENCY3 AS FNC_CURRENCY3, &lt;/P&gt;&lt;P&gt;IVNUM AS FNC_IVNUM, &lt;/P&gt;&lt;P&gt;EXCHANGE2 AS FNC_EXCHANGE2 &lt;/P&gt;&lt;P&gt;FROM [lib://CLINTON_SAMPLE/Fnctrans.qvd]&lt;/P&gt;&lt;P&gt;(qvd)&lt;/P&gt;&lt;P&gt;Where FINAL ='Y';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left Join (Inv_Sales_temp)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;CUST_CUST AS INV_CUST, CUST_CUSTNAME AS INV_CUSTNAME,CUST_CUSTDES AS INV_CUSTDES&lt;/P&gt;&lt;P&gt;Resident Custs;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i am getting this :&lt;/P&gt;&lt;P&gt;Table not found: left Join (Inv_Sales_temp) LOAD CUST_CUST AS INV_CUST, CUST_CUSTNAME AS INV_CUSTNAME,CUST_CUSTDES AS INV_CUSTDES Resident Custs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont realiy understand why.... since i have wrote down custs...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2015 19:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/some-problem-of-a-quot/m-p/984539#M14331</guid>
      <dc:creator />
      <dc:date>2015-12-09T19:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: some problem of a "</title>
      <link>https://community.qlik.com/t5/App-Development/some-problem-of-a-quot/m-p/984540#M14332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jhonatan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am assuming that this is the same post as the other one. So the solutions the same. Use No Concatenate before the load statement of table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Inv_Sales_temp.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 09:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/some-problem-of-a-quot/m-p/984540#M14332</guid>
      <dc:creator>reddy-s</dc:creator>
      <dc:date>2015-12-10T09:42:21Z</dc:date>
    </item>
  </channel>
</rss>

