<?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 Send selected result to an external system in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325840#M1235700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fredrikr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you would have to use a macro for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look at this post for a start:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-wiki-small" href="http://community.qlik.com/docs/DOC-1320"&gt;http://community.qlik.com/docs/DOC-1320&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Oct 2011 19:19:07 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2011-10-10T19:19:07Z</dc:date>
    <item>
      <title>Send selected result to an external system</title>
      <link>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325839#M1235697</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;Is it possible to take all data from a column in a filtered result and in some way send it to an external system through either of:&lt;/P&gt;&lt;P&gt;* Web Service&lt;/P&gt;&lt;P&gt;* HTTP post&lt;/P&gt;&lt;P&gt;* Some other way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas or examples are appreciated, both for getting the filtered result and how to send it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&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/Send-selected-result-to-an-external-system/m-p/325839#M1235697</guid>
      <dc:creator />
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Send selected result to an external system</title>
      <link>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325840#M1235700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fredrikr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you would have to use a macro for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look at this post for a start:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-wiki-small" href="http://community.qlik.com/docs/DOC-1320"&gt;http://community.qlik.com/docs/DOC-1320&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 19:19:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325840#M1235700</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-10-10T19:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Send selected result to an external system</title>
      <link>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325841#M1235704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fredrikr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With QV10 you could write an extension objects that leverages qlikview functionality and then pushing that data out of QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This small snippet will give you an example on how to get the first column data and then display that in a html-table.&lt;/P&gt;&lt;P&gt;Since you have the data you can now push that into a different system. We usually does it this way when piping customer IDs back to a CRM-system for example, set the customer ID as a dimension and a '=1' as expression to get the chart to calculate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you get stuck, check out the QlikView SDK where you will find good examples aswell as the JsApi documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Qva.AddExtension('RenderHTML', function() {&lt;/P&gt;&lt;P&gt;&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; var html = "&amp;lt;table&amp;gt;";&lt;/P&gt;&lt;P&gt;&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; for (var i = 0; i &amp;lt; this.Data.Rows.length; i++) { &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;&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;var row = this.Data.Rows &lt;I&gt;; &lt;/I&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; html += "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;" + row[0].text + "&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;"; &lt;/P&gt;&lt;P&gt;&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; html += "&amp;lt;/table&amp;gt;";&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;this.Element.style.overflow = 'scroll';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.Element.innerHTML = html;&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;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 20:19:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325841#M1235704</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2011-10-10T20:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Send selected result to an external system</title>
      <link>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325842#M1235706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Alexander said, you can use Extension Objects. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have managed to write an Extension that prints data in an HTML table and with an HTML Form sends the data to a web server and then to an SQL database. The extension is not complete yet, but it works to that point. Then you can do whatever you want with the data &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using Alexander's example code, you can integrate an HTML Form with (preferably hidden) input fields containing the values in each cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;html += "&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;input type='hidden' value='" + row[0].text + "' /&amp;gt;" + row[0].text + "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2011 15:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-selected-result-to-an-external-system/m-p/325842#M1235706</guid>
      <dc:creator />
      <dc:date>2011-10-13T15:04:39Z</dc:date>
    </item>
  </channel>
</rss>

