<?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: Mashup Store table in excel/CSV (server side) in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1760363#M13536</link>
    <description>&lt;P&gt;I believe the&amp;nbsp;&lt;SPAN&gt;table.exportData() function you've show in your example will always run client-side, and therefore write to the local machine.&amp;nbsp; As far as example of writing server-side, what web server and framework are you using for your mashup?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Nov 2020 15:13:50 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2020-11-10T15:13:50Z</dc:date>
    <item>
      <title>Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1759027#M13492</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I'm having issues downloading a table into the server on a mashup.&lt;/P&gt;&lt;P&gt;The idea is to store a table that contains a few dimensions and 2 variable inputs which once they hit the "export" button that data should get stored in an excel file in the server.&lt;/P&gt;&lt;P&gt;//EXPORT&lt;BR /&gt;require( ["js/qlik", 'jquery'], function ( qlik, $ ) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var app9 = qlik.openApp('App.qvf', config);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var $exportButton = $( document.createElement('button')).text('Export').appendTo('body');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var object = app.getObject('QV14','ObjectID');&lt;BR /&gt;&amp;nbsp; &amp;nbsp; object.then(function(model) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var table = new qlik.table(model);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $exportButton.bind('click', function() {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; table.exportData({download: true});&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })&lt;BR /&gt;&amp;nbsp; &amp;nbsp; })&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This allows to export the data into the client side. However, i need to store it into the server.&lt;/P&gt;&lt;P&gt;Any idea how should i approach this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:09:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1759027#M13492</guid>
      <dc:creator>J_Uri</dc:creator>
      <dc:date>2024-11-16T01:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1759063#M13494</link>
      <description>&lt;P&gt;Because of the sandbox security restrictions in the browser, you will need to&amp;nbsp;&amp;nbsp;POST the data to a service running on the server (or some server) and have the service write the file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 19:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1759063#M13494</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-11-05T19:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1760138#M13527</link>
      <description>&lt;P&gt;Thanks Rob for the reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been looking into this and found a post that is saying that the file is located in the server when doing an export.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Integration-Extensions-APIs/How-to-include-quot-Export-data-quot-feature-in-a-mashup/td-p/861168/page/3" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-Integration-Extensions-APIs/How-to-include-quot-Export-data-quot-feature-in-a-mashup/td-p/861168/page/3&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Could this mean that the export function would allow to export to the server?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you provide an example of a service running on the server to capture that data?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 08:19:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1760138#M13527</guid>
      <dc:creator>J_Uri</dc:creator>
      <dc:date>2020-11-10T08:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1760363#M13536</link>
      <description>&lt;P&gt;I believe the&amp;nbsp;&lt;SPAN&gt;table.exportData() function you've show in your example will always run client-side, and therefore write to the local machine.&amp;nbsp; As far as example of writing server-side, what web server and framework are you using for your mashup?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 15:13:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1760363#M13536</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2020-11-10T15:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1761273#M13546</link>
      <description>&lt;P&gt;We're using the Qlik devhub so i'm guessing we're ussing the QlikServer as a web server. Otherwise i don't know what you're referring to.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Nov 2020 18:05:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1761273#M13546</guid>
      <dc:creator>J_Uri</dc:creator>
      <dc:date>2020-11-12T18:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Mashup Store table in excel/CSV (server side)</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1762882#M13568</link>
      <description>&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;The solution to create a web application to store the data we needed delayed the deployment of the project too much and was ultimately discarded.&lt;/P&gt;&lt;P&gt;We would have needed to create a nodejs server and create a service that would listen to petitions 24/7 and recover these fields and store them in a SQL databse or a CSV.&lt;/P&gt;&lt;P&gt;This topic was very helpful:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Sense/Is-anyone-familiar-with-mashups-InputBox-to-store-into-MySql-db/td-p/1415723" target="_blank"&gt;https://community.qlik.com/t5/New-to-Qlik-Sense/Is-anyone-familiar-with-mashups-InputBox-to-store-into-MySql-db/td-p/1415723&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally we opted to use &lt;STRONG&gt;Qlik OnDemand App&lt;/STRONG&gt; to store the information we needed on the server in a QVD. This basically creates an app that is filtered by the user and stores the filtered information into a QVD. Quite simple and the only problem is that the apps are stored in the server aswell, which they can be deleted daily thorugh an automated task.&lt;/P&gt;&lt;P&gt;Hope this is usefull to somebody else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards, Javier.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 11:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Mashup-Store-table-in-excel-CSV-server-side/m-p/1762882#M13568</guid>
      <dc:creator>J_Uri</dc:creator>
      <dc:date>2020-11-19T11:22:44Z</dc:date>
    </item>
  </channel>
</rss>

