<?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: Duplicate row in my model with concatenate in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Duplicate-row-in-my-model-with-concatenate/m-p/1675452#M63707</link>
    <description>&lt;P&gt;I try to do an outer join like that , at this moment of script :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tmp_Dim_Payable_Recevable:&lt;BR /&gt;load * inline [&lt;BR /&gt;@&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;OUTER JOIN (Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Payable;&lt;/P&gt;&lt;P&gt;OUTER JOIN (Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Recevable;&lt;BR /&gt;&lt;BR /&gt;DROP FIELD @ FROM Tmp_Dim_Payable_Recevable;&lt;/P&gt;&lt;P&gt;Drop table Dim_Payable;&lt;BR /&gt;Drop table Dim_Recevable;&lt;/P&gt;&lt;P&gt;But it's doesn't works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2020 16:45:46 GMT</pubDate>
    <dc:creator>jmialoundama</dc:creator>
    <dc:date>2020-02-13T16:45:46Z</dc:date>
    <item>
      <title>Duplicate row in my model with concatenate</title>
      <link>https://community.qlik.com/t5/App-Development/Duplicate-row-in-my-model-with-concatenate/m-p/1675436#M63706</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have repeating lines.&lt;BR /&gt;These are fake "duplicates".&lt;BR /&gt;Let me explain.&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;I run the following script:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Dim_Payable:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt;K_ACCOUNT_PAYABLE_TAXES,&lt;BR /&gt;K_PAYABLE_RECEVABLE_TAXES&lt;BR /&gt;RESIDENT FACT;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Dim_Payable)&lt;BR /&gt;LOAD&lt;BR /&gt;K_ACCOUNT_PAYABLE_TAXES,&lt;BR /&gt;"DOC PAY ITEM",&lt;BR /&gt;"ASOF",&lt;BR /&gt;"DATE",&lt;BR /&gt;"GL OFFSET",&lt;BR /&gt;"GL OFFSET LABEL",&lt;BR /&gt;RESIDENT FACT&lt;BR /&gt;where WildMatch(Flag_Fait,'F_ACCOUNT_PAYABLE')&amp;gt;0;&lt;/P&gt;&lt;P&gt;DROP FIELDS K_ACCOUNT_PAYABLE_TAXES FROM Dim_Payable;&lt;/P&gt;&lt;P&gt;Dim_Recevable:&lt;BR /&gt;LOAD distinct&lt;BR /&gt;K_ACCOUNT_RECEVABLE_TAXES,&lt;BR /&gt;K_PAYABLE_RECEVABLE_TAXES&lt;BR /&gt;RESIDENT FACT;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Dim_Recevable)&lt;BR /&gt;LOAD&lt;BR /&gt;K_ACCOUNT_RECEVABLE_TAXES,&lt;BR /&gt;K_ACCOUNT_PAYABLE_TAXES,&lt;BR /&gt;"DOC PAY ITEM",&lt;BR /&gt;"ASOF",&lt;BR /&gt;"DATE",&lt;BR /&gt;"GL OFFSET",&lt;BR /&gt;"GL OFFSET LABEL",&lt;BR /&gt;RESIDENT FACT&lt;BR /&gt;where WildMatch(Flag_Fait,'F_ACCOUNT_RECEVABLE')&amp;gt;0;&lt;/P&gt;&lt;P&gt;DROP FIELDS K_ACCOUNT_RECEVABLE_TAXES FROM Dim_Recevable;&lt;/P&gt;&lt;P&gt;DROP FIELDS&lt;BR /&gt;"DOC PAY ITEM",&lt;BR /&gt;"ASOF",&lt;BR /&gt;"DATE",&lt;BR /&gt;"GL OFFSET",&lt;BR /&gt;"GL OFFSET LABEL",&lt;BR /&gt;FROM FACT;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Tmp_Dim_Payable_Recevable:&lt;BR /&gt;load * inline [&lt;BR /&gt;@&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;CONCATENATE(Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Payable;&lt;/P&gt;&lt;P&gt;CONCATENATE(Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Recevable;&lt;BR /&gt;&lt;BR /&gt;DROP FIELD @ FROM Tmp_Dim_Payable_Recevable;&lt;/P&gt;&lt;P&gt;Drop table Dim_Payable;&lt;BR /&gt;Drop table Dim_Recevable;&lt;/P&gt;&lt;P&gt;Here is the result I get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Capture.JPG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/28388iFECB894646295857/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I only run my first Dim_Payable table, I get the right visualization,&amp;nbsp; this one:&lt;/P&gt;&lt;P&gt;Dim_Recevable:&lt;BR /&gt;LOAD distinct&lt;BR /&gt;K_ACCOUNT_RECEVABLE_TAXES,&lt;BR /&gt;K_PAYABLE_RECEVABLE_TAXES&lt;BR /&gt;RESIDENT FACT;&lt;/P&gt;&lt;P&gt;LEFT JOIN(Dim_Recevable)&lt;BR /&gt;LOAD&lt;BR /&gt;K_ACCOUNT_RECEVABLE_TAXES,&lt;BR /&gt;K_ACCOUNT_PAYABLE_TAXES,&lt;BR /&gt;"DOC PAY ITEM",&lt;BR /&gt;"ASOF",&lt;BR /&gt;"DATE",&lt;BR /&gt;"GL OFFSET",&lt;BR /&gt;"GL OFFSET LABEL",&lt;BR /&gt;RESIDENT FACT&lt;BR /&gt;where WildMatch(Flag_Fait,'F_ACCOUNT_RECEVABLE')&amp;gt;0;&lt;/P&gt;&lt;P&gt;DROP FIELDS K_ACCOUNT_RECEVABLE_TAXES FROM Dim_Recevable;&lt;/P&gt;&lt;P&gt;DROP FIELDS&lt;BR /&gt;"DOC PAY ITEM",&lt;BR /&gt;"ASOF",&lt;BR /&gt;"DATE",&lt;BR /&gt;"GL OFFSET",&lt;BR /&gt;"GL OFFSET LABEL",&lt;BR /&gt;FROM FACT;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Capture.JPG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/28389iB7267E4E534CB389/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But when I add my Dim_Recevable table and I just concatenate the two tables I get duplicate rows with empty data.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:07:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Duplicate-row-in-my-model-with-concatenate/m-p/1675436#M63706</guid>
      <dc:creator>jmialoundama</dc:creator>
      <dc:date>2024-11-16T19:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Duplicate row in my model with concatenate</title>
      <link>https://community.qlik.com/t5/App-Development/Duplicate-row-in-my-model-with-concatenate/m-p/1675452#M63707</link>
      <description>&lt;P&gt;I try to do an outer join like that , at this moment of script :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tmp_Dim_Payable_Recevable:&lt;BR /&gt;load * inline [&lt;BR /&gt;@&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;OUTER JOIN (Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Payable;&lt;/P&gt;&lt;P&gt;OUTER JOIN (Tmp_Dim_Payable_Recevable)&lt;BR /&gt;LOAD * Resident Dim_Recevable;&lt;BR /&gt;&lt;BR /&gt;DROP FIELD @ FROM Tmp_Dim_Payable_Recevable;&lt;/P&gt;&lt;P&gt;Drop table Dim_Payable;&lt;BR /&gt;Drop table Dim_Recevable;&lt;/P&gt;&lt;P&gt;But it's doesn't works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2020 16:45:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Duplicate-row-in-my-model-with-concatenate/m-p/1675452#M63707</guid>
      <dc:creator>jmialoundama</dc:creator>
      <dc:date>2020-02-13T16:45:46Z</dc:date>
    </item>
  </channel>
</rss>

