<?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 Simulating ODAG for Analyzer License in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1567522#M10320</link>
    <description>&lt;P&gt;I think I almost have it. But now I'm gettint this error.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rowEstRange.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/9859i9BD7097DF411D4D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rowEstRange.PNG" alt="rowEstRange.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;"Missing required app navigaiton link property rowEstRange", but I have it defined in the payload, maybe it's not well defined?&lt;/P&gt;&lt;PRE&gt;var copyURI = '/api/odag/v1/links';
var linkAddPayload = {
	name: 'ODAG API Test App ' + nowTime,
	selectionApp: '7b8286c1-5f5c-4759-998f-82185048b2c7',
	templateApp: 'f25cc3bd-8875-45b7-a5da-8228f12663c5',
	rowEstExpr: 'Sum(FLIGHT_COUNT)',
	properties: {
		rowEstRange : {
			context: '*',
			highBound: 100000
		},
		genAppLimit: {
			context: 'User_*',
			limit: 5
		}
	}
}
qlik.callRepository(copyURI, 'POST', linkAddPayload).success(function (reply) {
	console.log("Got reply from copy app:", reply);
})&lt;/PRE&gt;</description>
    <pubDate>Wed, 10 Apr 2019 10:39:21 GMT</pubDate>
    <dc:creator>marcelinoa</dc:creator>
    <dc:date>2019-04-10T10:39:21Z</dc:date>
    <item>
      <title>Qlik Sense Simulating ODAG for Analyzer License</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1566242#M10303</link>
      <description>&lt;P&gt;Hi, one of the extensions I'm have been developing has similar functionality to that of the ODAG Service, and we do so by creating an enigma session to the engine and doing what we need.&lt;/P&gt;&lt;P&gt;Now the problem I'm having is that the create (global.openDoc) and publish (doc.publish) don't work when a user with the Analyzer License tries to use the extension, only those with Professional License.&lt;/P&gt;&lt;P&gt;Is there a way to make this happen? Or are the API calls blocked if the User doesn't have permission?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 08:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1566242#M10303</guid>
      <dc:creator>marcelinoa</dc:creator>
      <dc:date>2019-04-08T08:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Simulating ODAG for Analyzer License</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1567422#M10317</link>
      <description>&lt;P&gt;I'm aware of the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/February2019/apis/ODAGserviceAPI/index.html?page=0" target="_blank" rel="noopener"&gt;ODAGService&lt;/A&gt;&amp;nbsp;but currently don't know how to use it. I'm trying to use the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/February2019/apis/ODAGserviceAPI/index.html?page=9" target="_self"&gt;POST /links&lt;/A&gt;&amp;nbsp;but don't know how to set the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/February2019/apis/ODAGserviceAPI/index.html?page=44" target="_self"&gt;LinkAddPayload&lt;/A&gt;&amp;nbsp;or how to send it.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 08:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1567422#M10317</guid>
      <dc:creator>marcelinoa</dc:creator>
      <dc:date>2019-04-10T08:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Simulating ODAG for Analyzer License</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1567522#M10320</link>
      <description>&lt;P&gt;I think I almost have it. But now I'm gettint this error.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rowEstRange.PNG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/9859i9BD7097DF411D4D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rowEstRange.PNG" alt="rowEstRange.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;"Missing required app navigaiton link property rowEstRange", but I have it defined in the payload, maybe it's not well defined?&lt;/P&gt;&lt;PRE&gt;var copyURI = '/api/odag/v1/links';
var linkAddPayload = {
	name: 'ODAG API Test App ' + nowTime,
	selectionApp: '7b8286c1-5f5c-4759-998f-82185048b2c7',
	templateApp: 'f25cc3bd-8875-45b7-a5da-8228f12663c5',
	rowEstExpr: 'Sum(FLIGHT_COUNT)',
	properties: {
		rowEstRange : {
			context: '*',
			highBound: 100000
		},
		genAppLimit: {
			context: 'User_*',
			limit: 5
		}
	}
}
qlik.callRepository(copyURI, 'POST', linkAddPayload).success(function (reply) {
	console.log("Got reply from copy app:", reply);
})&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Apr 2019 10:39:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1567522#M10320</guid>
      <dc:creator>marcelinoa</dc:creator>
      <dc:date>2019-04-10T10:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Simulating ODAG for Analyzer License</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1568203#M10340</link>
      <description>&lt;P&gt;So I figured the previous problem, I was missing the square brackets before defining the rowEstRange and genAppLimit.&lt;/P&gt;&lt;P&gt;So this:&lt;/P&gt;&lt;PRE&gt;rowEstRange : {
	context: '*',
	highBound: 100000
},
genAppLimit: {
	context: 'User_*',
	limit: 5
}&lt;/PRE&gt;&lt;P&gt;Becomes this:&lt;/P&gt;&lt;PRE&gt;rowEstRange : [{
	context: '*',
	highBound: 10000
}],
genAppLimit: [{
	context: 'User_*',
	limit: 5
}]&lt;/PRE&gt;&lt;P&gt;And with that I can successufly creat a link and see it was created with the call /api/odag/v1/links&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now onto calling the link to generate an app. I use the linkId from the previously made link and I make this call - /api/odag/v1/links/{linkId}/requests - and pass the following object:&lt;/P&gt;&lt;PRE&gt;var requestCreatePayload = {
	selectionApp: '7b8286c1-5f5c-4759-998f-82185048b2c7'
}&lt;/PRE&gt;&lt;P&gt;In the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense-developer/February2019/apis/ODAGserviceAPI/index.html?page=81" target="_self"&gt;definition of the payload&lt;/A&gt;, there are two parameters that don't say they are optional nor they say they are required, and I don't know yet how to go about setting them and if they are indeed required. But just sending the selectionApp Id gives a POST 400 Bad Request error with no more information, so I don't know where to go from where to successfully generate the app.&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 13:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1568203#M10340</guid>
      <dc:creator>marcelinoa</dc:creator>
      <dc:date>2019-04-11T13:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Simulating ODAG for Analyzer License</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1574317#M10423</link>
      <description>&lt;P&gt;Solution&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Integration/On-Demand-App-Generation-using-the-same-app-as-selection-and/m-p/1569879/highlight/false#M10350" target="_self"&gt;here&lt;/A&gt;. It was the same problem/reason.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2019 08:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Qlik-Sense-Simulating-ODAG-for-Analyzer-License/m-p/1574317#M10423</guid>
      <dc:creator>marcelinoa</dc:creator>
      <dc:date>2019-04-29T08:16:34Z</dc:date>
    </item>
  </channel>
</rss>

