<?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 Exporting Master Items using API in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28863#M1968</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to using the API and was wondering if it is possible to export a master items list created in any given application to an excel document (or any document for that matter). I have an app that has a number of master items (both measures and dimensions) and I need to document all its information and I thought there must be an easier way then to copy and paste everything. If someone could point me in the right direction or supply me with the code that would be awesome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2018 13:41:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-06-14T13:41:29Z</dc:date>
    <item>
      <title>Exporting Master Items using API</title>
      <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28863#M1968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to using the API and was wondering if it is possible to export a master items list created in any given application to an excel document (or any document for that matter). I have an app that has a number of master items (both measures and dimensions) and I need to document all its information and I thought there must be an easier way then to copy and paste everything. If someone could point me in the right direction or supply me with the code that would be awesome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again everyone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 13:41:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28863#M1968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-14T13:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Master Items using API</title>
      <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28864#M1969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;also I forgot to mention that if anyone knows a different way to export a list of the master items and all the information pertaining to each item&lt;SPAN style="text-decoration: underline;"&gt; that doesn't involve the API&lt;/SPAN&gt; that works too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28864#M1969</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-14T15:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Master Items using API</title>
      <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28865#M1970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can loop with the master item data and store it and write that data in excel&lt;/P&gt;&lt;P&gt;please follow below link to store the data in xls format&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/42113422/how-to-write-data-into-an-xls-sheet-in-js" title="https://stackoverflow.com/questions/42113422/how-to-write-data-into-an-xls-sheet-in-js"&gt;javascript - How to write data into an xls sheet in js - Stack Overflow&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Or you can store the data in json format also for this here is the code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;var items=[];&amp;nbsp;&amp;nbsp;&amp;nbsp; //define an empty array&lt;/P&gt;&lt;P&gt;this.app.getAllInfos().then(res=&amp;gt;{&amp;nbsp;&amp;nbsp;&amp;nbsp; //get all the info of app&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;//here you can loop and check which masteritem (&lt;STRONG&gt;dimension/measure&lt;/STRONG&gt;) is and store it in json format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;items.push(res);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;jsonfile.writeFile(Objlist, Items, function (err) {&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; console.error(err)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;})&lt;/P&gt;&lt;P&gt;})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 13:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28865#M1970</guid>
      <dc:creator>Prashant_Naik</dc:creator>
      <dc:date>2018-06-20T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Master Items using API</title>
      <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28866#M1971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Prashant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After some further exploration the first technique you mentioned I had considered doing. One of my colleagues ended up figuring out a similar technique to your second suggestion and it worked out rather well! Thanks again for your input, much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 16:02:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/28866#M1971</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-20T16:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting Master Items using API</title>
      <link>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/1598453#M44246</link>
      <description>&lt;P&gt;Hi Josh,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please explain the process of exporting dimensions/measures.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tej.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2019 07:38:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Exporting-Master-Items-using-API/m-p/1598453#M44246</guid>
      <dc:creator>tejes</dc:creator>
      <dc:date>2019-07-03T07:38:00Z</dc:date>
    </item>
  </channel>
</rss>

