<?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: Avoid Qvd if not present in script?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298998#M405088</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set ErrorMode = 0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Apr 2017 12:13:14 GMT</pubDate>
    <dc:creator>m_woolf</dc:creator>
    <dc:date>2017-04-11T12:13:14Z</dc:date>
    <item>
      <title>Avoid Qvd if not present in script??</title>
      <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298997#M405087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Hi ,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Thanks in advance.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I have three QVD of three tables i.e.orders, payment and refunds.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;And in my main Transformation qvd i am doing full outer join of this three table.&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;orders&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;join&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;payment&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;join&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Refund&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;suppose if payment qvd vice versa is not presnt then script get failed , my requirement is if payment qvd is not presnt then also script&amp;nbsp; should run with&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;orders&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;join&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Payment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Sunilkumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 07:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298997#M405087</guid>
      <dc:creator>sunil1989</dc:creator>
      <dc:date>2017-04-11T07:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid Qvd if not present in script??</title>
      <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298998#M405088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set ErrorMode = 0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 12:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298998#M405088</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2017-04-11T12:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid Qvd if not present in script??</title>
      <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298999#M405089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or use a logic with calls to FileTime() to check whether the two last Qvds really exist. In script code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Orders:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * FROM Orders.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;IF Not IsNull(FileTime('Payments.qvd')) THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LEFT JOIN Orders LOAD * FROM Payments.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;END IF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;IF Not IsNull(FileTime('Refunds.qvd')) THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LEFT JOIN Orders LOAD * FROM Refunds.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;END IF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adjust this technique to whatever specific needs you may have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 12:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1298999#M405089</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-04-11T12:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid Qvd if not present in script??</title>
      <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1299000#M405090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter, it seems you accidentally missed the Filetime() usage you wanted to demonstrate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;IF Not IsNull(&lt;STRONG&gt;Filetime&lt;/STRONG&gt;('Payments.qvd')) THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 12:41:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1299000#M405090</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-04-11T12:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid Qvd if not present in script??</title>
      <link>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1299001#M405091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;True, corrected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Stefan !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 13:06:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Avoid-Qvd-if-not-present-in-script/m-p/1299001#M405091</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-04-11T13:06:02Z</dc:date>
    </item>
  </channel>
</rss>

