<?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 How to create EDX task in QV11 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344444#M1239955</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think, you should use QMS API. I have done similar job using C#.NET and QMS API. &lt;STRONG style="background-color: #f8f4e6; font-size: 12px; color: #636363; font-family: Arial;"&gt;The QlikVIew Management Service API&lt;/STRONG&gt; documentation you will find here: &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-2639"&gt;http://community.qlik.com/docs/DOC-2639&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2012 08:14:29 GMT</pubDate>
    <dc:creator>alex_nerush</dc:creator>
    <dc:date>2012-04-11T08:14:29Z</dc:date>
    <item>
      <title>How to create EDX task in QV11</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344443#M1239954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been working on the EDX tasks for a while. Running EDX jobs for already created task is quite simple. However, I am trying to create the EDX task automatically when the document name and task name are given as parameters to the script but without any luck so far. &lt;BR /&gt;Has someone worked on similar requirement? Any help or suggestions as to how this can be achieved would be highly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344443#M1239954</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>How to create EDX task in QV11</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344444#M1239955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think, you should use QMS API. I have done similar job using C#.NET and QMS API. &lt;STRONG style="background-color: #f8f4e6; font-size: 12px; color: #636363; font-family: Arial;"&gt;The QlikVIew Management Service API&lt;/STRONG&gt; documentation you will find here: &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-2639"&gt;http://community.qlik.com/docs/DOC-2639&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2012 08:14:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344444#M1239955</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2012-04-11T08:14:29Z</dc:date>
    </item>
    <item>
      <title>How to create EDX task in QV11</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344445#M1239957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alexander,&lt;/P&gt;&lt;P&gt;Could you share an example as how you created a new task through QMS API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 10:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344445#M1239957</guid>
      <dc:creator />
      <dc:date>2012-05-01T10:21:43Z</dc:date>
    </item>
    <item>
      <title>How to create EDX task in QV11</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344446#M1239961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for late reply... Here you are couple lines of code. Maybe this will be helpful for you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DocumentTask.TaskReload tr = new DocumentTask.TaskReload();&lt;/P&gt;&lt;P&gt;tr.Mode = mode;&lt;/P&gt;&lt;P&gt;DocumentTask dtask = new DocumentTask();&lt;/P&gt;&lt;P&gt;dtask.Document = doc;&lt;/P&gt;&lt;P&gt;dtask.ID = taskId;&lt;/P&gt;&lt;P&gt;dtask.Scope = DocumentTaskScope.Reload;&lt;/P&gt;&lt;P&gt;dtask.Reload = tr;&lt;/P&gt;&lt;P&gt; dtask.QDSID = qdsID;&lt;/P&gt;&lt;P&gt; client.SaveDocumentTask(dtask);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To run task:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; client.RunTask(taskId);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where is client is instance of QMSClient class. The client variable should be declared like following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;private IQMS client;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2012 05:53:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-EDX-task-in-QV11/m-p/344446#M1239961</guid>
      <dc:creator>alex_nerush</dc:creator>
      <dc:date>2012-05-07T05:53:30Z</dc:date>
    </item>
  </channel>
</rss>

