<?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: Qlik Sense Integration in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933730#M3358</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan. Please let me know if you hear anything regd API approach. Cheers...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Dec 2015 21:42:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-12-02T21:42:37Z</dc:date>
    <item>
      <title>Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933721#M3349</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 store qlik expressions/variables in an excel or some other external storage and load it to Qlik Sense on demand via API, Webservice etc?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 20:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933721#M3349</guid>
      <dc:creator />
      <dc:date>2015-12-01T20:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933722#M3350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it without the API using the data load editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variables:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;MeasureName,MeasureExpression&lt;/P&gt;&lt;P&gt;Sales, Sum(Sales)&lt;/P&gt;&lt;P&gt;Costs,Sum(Costs)&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set vSales=peek('Variables',0,'MeasureExpression')&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;set vCosts=peek('Variables',1,'MeasureExpression')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 2nd argument is the row number of the table starting at 0. Set will not evaluate the condition , it will set the variable to the text. Use $()&amp;nbsp; expansion syntax to leverage the variable in an expression dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This approach is the CRUX of externalizing expressions and measures outside of QlikView and Qlik Sense for use in multiple applications. Its a key way to establish some data governance and inject new expressions into an existing production app.&amp;nbsp; Its a good technique to master ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps:&amp;nbsp; you can do this with master items yet.&amp;nbsp; That would need the API.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 21:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933722#M3350</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-12-01T21:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933723#M3351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan, I think you meant to use "LET"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:01:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933723#M3351</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-12-02T03:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933724#M3352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes! .. definitely psyched myself out a little with the layers of expression resolution. Thank you Rob.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933724#M3352</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-12-02T03:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933725#M3353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response. Much appreciated. Sorry if I didn't specify my requirements clearly. My requirement is store all the expressions for my measures in an external storage and publish that to Qlik instance from outside thru an API or Webservice. For Example say we have a measure by name Revenue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 680px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="109"&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl63" width="338"&gt;&lt;STRONG&gt;Expression&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl63" width="233"&gt;&lt;STRONG&gt;Comment&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="17"&gt;Revenue&lt;/TD&gt;&lt;TD&gt;=sum(Price * Amount)&lt;/TD&gt;&lt;TD class="xl64"&gt;Total revenue&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to store the expression logic in an excel or an external source and load that to Qlik on demand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new to Qlik so excuse me if i'm not using the right terminologies or not explaining it to the point. Let me know if you have any questions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 18:05:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933725#M3353</guid>
      <dc:creator />
      <dc:date>2015-12-02T18:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933726#M3354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry if you didn't understand.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;You can do external storage in excel and import the expressions from excel into one or more Qlik apps using the data load editor. With this workflow the expressions are stored in Qlik as &lt;SPAN style="text-decoration: underline;"&gt;variables&lt;/SPAN&gt;. Variables can be leveraged in every expression in Qlik Sense.&amp;nbsp; You could technically do this through the API but i see no need, its a tried and tested approach that works without the API. The sample above is extremely basic , but you could easily add loops to inject as many expressions as you want.&amp;nbsp; You can also do an 'incremental load' strategy to import expressions seperately to your regular data loads. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where you DO need the API is if you want to store the expressions as master items (instead of variables). We cannot import external expressions into dimension/measure master items through the data load editor. Is that what you are trying to do ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 18:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933726#M3354</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-12-02T18:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933727#M3355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again for the clarification. I understand your point now but yes, I also need to import the dim/measure master items thru this process.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 19:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933727#M3355</guid>
      <dc:creator />
      <dc:date>2015-12-02T19:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933728#M3356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Quick Update:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was able to create a variable and load that into Qlik. Used that variable in my expression and got the right value. I now want to import external expressions into measure master item if that is possible thru APIs etc. which is my end goal. Again, I really appreciate your help on this. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 20:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933728#M3356</guid>
      <dc:creator />
      <dc:date>2015-12-02T20:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933729#M3357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats great to hear !&amp;nbsp;&amp;nbsp; You may want to leverage this for variables only because master items cannot yet be referenced in expressions. With master items, they must form the entire expression whether its a measure or dimension. But variables can be leveraged within existing expressions so they are a little more flexible for some situations. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For master items yes you need the API but... i don't have an example for you . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll make some inquiries however.&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-users/3050"&gt;msi&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 20:38:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933729#M3357</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-12-02T20:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933730#M3358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jonathan. Please let me know if you hear anything regd API approach. Cheers...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 21:42:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933730#M3358</guid>
      <dc:creator />
      <dc:date>2015-12-02T21:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933731#M3359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌There is a discussion regarding creating master items from script here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/176940"&gt;New IDEA: Create master items (dimensions, measures) in script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 07:48:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933731#M3359</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-12-03T07:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933732#M3360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob, I did check the post and downloaded FastTrack app. It works using an XML on desktop. Checking further on how to implement it on the server. Great help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 17:10:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933732#M3360</guid>
      <dc:creator />
      <dc:date>2015-12-03T17:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933733#M3361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Let us know how you fare implementing it on the server. I'm curious.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 04:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933733#M3361</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-12-04T04:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Integration</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933734#M3362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wanted to let you know that I haven't reached any further on the server side implementation yet. I need to try Architeqt but haven't don't that. Please let me know if you have any luck with serverside master items creation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 16:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Integration/m-p/933734#M3362</guid>
      <dc:creator />
      <dc:date>2015-12-18T16:42:01Z</dc:date>
    </item>
  </channel>
</rss>

