<?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 Get last execution using QMS API in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745071#M669764</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 want to get the last execution of a task. How can I do it? I have a list of TaskInfo's object andi want to check the last execution of all the tasks even though it executed before the execution of the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im a little bit lost with it, which class should i use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PD: I am programming the app in C#&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Oct 2014 15:03:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-31T15:03:54Z</dc:date>
    <item>
      <title>Get last execution using QMS API</title>
      <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745071#M669764</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 want to get the last execution of a task. How can I do it? I have a list of TaskInfo's object andi want to check the last execution of all the tasks even though it executed before the execution of the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im a little bit lost with it, which class should i use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PD: I am programming the app in C#&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Oct 2014 15:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745071#M669764</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-31T15:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Get last execution using QMS API</title>
      <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745072#M669765</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'm also looking to know how to extract the last execution of a task. Have you found the solution? It will be really helpfull if you can share it with me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 19:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745072#M669765</guid>
      <dc:creator />
      <dc:date>2015-01-08T19:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Get last execution using QMS API</title>
      <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745073#M669766</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;If you have a list of TaskInfo's, you can use the ID property of the TaskInfo object to get the taskId (guid).&lt;/P&gt;&lt;P&gt;Use this guid as taskId for the GetTaskStatus method to get the TaskStatus object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FinishedTime property (see line below) should return the last reload time of a task.&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14291789733856587 jive_text_macro" jivemacro_uid="_14291789733856587"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Console.WriteLine(taskStatus.Extended.FinishedTime);&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code example from QMS API documentation:&lt;/P&gt;&lt;PRE __default_attr="c#" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14291782637858420 jive_text_macro" jivemacro_uid="_14291782637858420" modifiedtitle="true"&gt;
&lt;P&gt;&lt;SPAN class="highlight-keyword"&gt;using&lt;/SPAN&gt; System;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="highlight-keyword"&gt;using&lt;/SPAN&gt; System.Collections.Generic;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="highlight-keyword"&gt;using&lt;/SPAN&gt; System.Linq;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="highlight-keyword"&gt;using&lt;/SPAN&gt; QMSAPI;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="highlight-keyword"&gt;class&lt;/SPAN&gt; Program&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;SPAN class="highlight-keyword"&gt;static&lt;/SPAN&gt; &lt;SPAN class="highlight-keyword"&gt;void&lt;/SPAN&gt; Main(&lt;SPAN class="highlight-keyword"&gt;string&lt;/SPAN&gt;[] args)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="highlight-keyword"&gt;try&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="highlight-comment"&gt;// create a QMS API client&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IQMS apiClient = &lt;SPAN class="highlight-keyword"&gt;new&lt;/SPAN&gt; QMSClient();&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="highlight-comment"&gt;//retrieve a time limited service key&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ServiceKeyClientMessageInspector.ServiceKey = apiClient.GetTimeLimitedServiceKey();&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Guid taskId = &lt;SPAN class="highlight-keyword"&gt;new&lt;/SPAN&gt; Guid(&lt;SPAN class="highlight-literal"&gt;"28a4fae4-8e75-4681-8ddc-751b7664a025"&lt;/SPAN&gt;); &lt;SPAN class="highlight-comment"&gt;//A known task id.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TaskStatus taskStatus = apiClient.GetTaskStatus(taskId, TaskStatusScope.Extended); &lt;SPAN class="highlight-comment"&gt;// A service call.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine(taskStatus.Extended.TaskSummary); &lt;SPAN class="highlight-comment"&gt;// Print the resulting task summary.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine(taskStatus.Extended.FinishedTime); &lt;SPAN class="highlight-comment"&gt;// Print the resulting task finished time.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="highlight-keyword"&gt;catch&lt;/SPAN&gt; (Exception ex)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.WriteLine(&lt;SPAN class="highlight-literal"&gt;"An exception occurred: "&lt;/SPAN&gt; + ex.Message);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="highlight-comment"&gt;// wait for user to press any key&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Console.ReadLine();&lt;/P&gt;
&lt;P&gt;&amp;nbsp; }&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will get you started!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bas Knol&lt;/P&gt;&lt;P&gt;The Implementation Group&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 10:14:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745073#M669766</guid>
      <dc:creator>bknol</dc:creator>
      <dc:date>2015-04-16T10:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Get last execution using QMS API</title>
      <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745074#M669767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Bas, very useful your information. I have another discussion opened called: &lt;A _jive_internal="true" href="https://community.qlik.com/message/755083#755083"&gt;Create On Multiple Events Completed trigger using QMS API&lt;/A&gt;. Do you have information about it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are trying to create all the different triggers that is possible to create with QMC and reaply it using the QMS API. We are able to create all triggers possibles like Once Trigger, Hourly Trigger... but we have problems with On Multiple Events Completed trigger. We are using MultipleEventTrigger method and filling all the information and the task is created but when we check on the QMC the Task completed dependencies is empty. It seems that the step of providing the task dependencies we do something wrong. Can someone help with that issue on provide some example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our code:&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4181c0; font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;MultipleEventTrigger&lt;/SPAN&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #4181c0;"&gt;MultipleEventTrigger&lt;/SPAN&gt;();&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st.ID = triggerID;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;BR /&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st.Type = &lt;SPAN style="color: #4181c0;"&gt;TaskTriggerType&lt;/SPAN&gt;.AndTrigger;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;BR /&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;SPAN style="color: #4181c0;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #4181c0;"&gt;Trigger&lt;/SPAN&gt;&amp;gt; trigger = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #4181c0;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #4181c0;"&gt;Trigger&lt;/SPAN&gt;&amp;gt;();&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;BR /&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st.TimeConstraint = 360;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;BR /&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st.Enabled = &lt;SPAN style="color: blue;"&gt;true&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;BR /&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; st.SubTriggers = &lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #4181c0;"&gt;List&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #4181c0;"&gt;Trigger&lt;/SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; taskTrigger[0]&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt; &lt;SPAN style="font-family: '}','serif'; font-size: 7.5pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }.ToArray();&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; ...&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Times New Roman','serif'; font-size: 12pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'Arial','sans-serif'; font-size: 10pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-GB; mso-fareast-language: EN-GB; mso-bidi-language: AR-SA;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 15:21:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745074#M669767</guid>
      <dc:creator />
      <dc:date>2015-04-16T15:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get last execution using QMS API</title>
      <link>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745075#M669768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have posted a reaction in the other discussion: &lt;A _jive_internal="true" href="https://community.qlik.com/message/755083#755083"&gt;Create On Multiple Events Completed trigger using QMS API&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 10:33:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-last-execution-using-QMS-API/m-p/745075#M669768</guid>
      <dc:creator>bknol</dc:creator>
      <dc:date>2015-04-20T10:33:17Z</dc:date>
    </item>
  </channel>
</rss>

