<?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: Outer Join in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961173#M648142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14423932002577295 jive_text_macro" jivemacro_uid="_14423932002577295"&gt;
&lt;P&gt;Temp_BSTK:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; [BSTK.No] as Key&lt;/P&gt;
&lt;P&gt;Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; BSTK.No, BSTK.Total&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00168, 40&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00432, 30&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00713, 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00249, 0&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Join&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ABK:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; [ABK.No] as Key&lt;/P&gt;
&lt;P&gt;Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ABK.No, ABK.Total&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00713, 8&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00249, 15&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Left Join (Temp_BSTK)&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Key,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(ABK.Total) &amp;lt;&amp;gt; 0, SUM(ABK.Total),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(BSTK.Total) &amp;lt;&amp;gt; 0 and SUM(ABK.Total) = 0, SUM(BSTK.Total),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(BSTK.Total) = 0 and SUM(ABK.Total) = 0, 0))) as NewTotal&lt;/P&gt;
&lt;P&gt;Resident Temp_BSTK&lt;/P&gt;
&lt;P&gt;Group By Key;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Sep 2015 08:46:43 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2015-09-16T08:46:43Z</dc:date>
    <item>
      <title>Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961171#M648140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Hello everybody,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;I’m quite new to QlikView and while programming a dashboard the following question came up:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;I have two tables: BSTK and ABK. Both have two colums: BSTK.No, BSTK.Total and ABK.No, ABK.Total.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;BSTK ist the order and ABK the confirmation of order. Not every order has a confirmation (see empty fields) and not every order has a value (=0).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;I want to make the following inquiry (maybe with an outer join):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;If BSTK.Total is empty, then show the value of ABK.Total&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;If BSTK.Total is not empty and ABK.Total is not empty, then show the value of ABK.Total&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;If BSTK.Total is not empty and ABK.Total is empty, then show the value of BSTK.Total&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;If both are empty, then show 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;The results should be shown in a separate Column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Does anyone have any idea how to solve this? Any help would be much appreciated. Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Alicelqv&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="124" style="border: 1px solid rgb(0, 0, 0); width: 415px; height: 125px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;BSTK.No&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;BSTK.Total&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ABK.No&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ABK.Total&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A00168&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A00432&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;30&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A00713&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;10&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A00713&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A00249&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;A00249&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;15&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:26:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961171#M648140</guid>
      <dc:creator />
      <dc:date>2015-09-16T08:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961172#M648141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you need join table with outer condition ? With data provided, we can easily handle it in expression itself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961172#M648141</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2015-09-16T08:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961173#M648142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14423932002577295 jive_text_macro" jivemacro_uid="_14423932002577295"&gt;
&lt;P&gt;Temp_BSTK:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; [BSTK.No] as Key&lt;/P&gt;
&lt;P&gt;Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; BSTK.No, BSTK.Total&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00168, 40&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00432, 30&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00713, 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00249, 0&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Join&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ABK:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; [ABK.No] as Key&lt;/P&gt;
&lt;P&gt;Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ABK.No, ABK.Total&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00713, 8&lt;/P&gt;
&lt;P&gt;&amp;nbsp; A00249, 15&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Left Join (Temp_BSTK)&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Key,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(ABK.Total) &amp;lt;&amp;gt; 0, SUM(ABK.Total),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(BSTK.Total) &amp;lt;&amp;gt; 0 and SUM(ABK.Total) = 0, SUM(BSTK.Total),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(SUM(BSTK.Total) = 0 and SUM(ABK.Total) = 0, 0))) as NewTotal&lt;/P&gt;
&lt;P&gt;Resident Temp_BSTK&lt;/P&gt;
&lt;P&gt;Group By Key;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:46:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961173#M648142</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-09-16T08:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961174#M648143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am assuming that you would want to join the tables in qv and then perform the expressions in the script?&lt;/P&gt;&lt;P&gt;please provide sample data for the both tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961174#M648143</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-16T08:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961175#M648144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please provide the sample data for two tables and expected results. So that it would be easy to provide the solution from QV experts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961175#M648144</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-09-16T08:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961176#M648145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it compulsory to use Outer Join ? and we can also do other way too &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961176#M648145</guid>
      <dc:creator>nagarjuna_kotha</dc:creator>
      <dc:date>2015-09-16T08:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961177#M648146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99106_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;BSTK:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;BSTK.No,BSTK.Total&lt;/P&gt;&lt;P&gt;A00168, 40&lt;/P&gt;&lt;P&gt;A00432, 30&lt;/P&gt;&lt;P&gt;A00713, 10&lt;/P&gt;&lt;P&gt;A00249,&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(BSTK)&lt;/P&gt;&lt;P&gt;ABK:&lt;/P&gt;&lt;P&gt;Load ABK.No as BSTK.No,ABK.Total;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;ABK.No, ABK.Total&lt;/P&gt;&lt;P&gt;A00713, 8&lt;/P&gt;&lt;P&gt;A00249, 15&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOad BSTK.No,ABK.Total,BSTK.Total,If(IsNull(ABK.Total),BSTK.Total,ABK.Total) as New_Column Resident BSTK;&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;Drop Table BSTK;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 08:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961177#M648146</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-09-16T08:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961178#M648147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that is exactly the logic I was looking for. Thank you! &lt;/P&gt;&lt;P&gt;But how can I make this with variables instead of the fixed numbers (A00713,A00249,...)? Maybe my question was not precise enough, but the list with the data goes on and I want QlikView to always calculate the new column. E.g. when new orders A00534, A00535,... are made and new confirmations come in, I want the programm to automatically update the chart.&lt;/P&gt;&lt;P&gt;Maybe you can help me with that, too?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 09:40:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961178#M648147</guid>
      <dc:creator />
      <dc:date>2015-09-16T09:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961179#M648148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your data source? if it is SQL, replace the inline loads with SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;qualify No Total;&lt;/P&gt;&lt;P&gt;BSTK:&lt;/P&gt;&lt;P&gt;SQL select No,Total from&amp;nbsp; BSTK;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(BSTK)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABK:&lt;/P&gt;&lt;P&gt;sql select No,Total from ABK;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final:&lt;/P&gt;&lt;P&gt;Load *,If(IsNull(ABK.Total),BSTK.Total,ABK.Total) as New_Column Resident BSTK;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 09:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961179#M648148</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-09-16T09:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join</title>
      <link>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961180#M648149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data source is a data base from our ERP system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your version sounds good and logical, but I still don't think that it's the solution (maybe close to it).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea how to solve this with a usual database?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 12:40:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Outer-Join/m-p/961180#M648149</guid>
      <dc:creator />
      <dc:date>2015-09-16T12:40:00Z</dc:date>
    </item>
  </channel>
</rss>

