<?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: Kill Hypercube in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652508#M11888</link>
    <description>&lt;P&gt;here is my&amp;nbsp; js script&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;* Bootstrap-based responsive mashup&lt;BR /&gt;* @owner Enter you name here (xxx)&lt;BR /&gt;*/&lt;BR /&gt;/*&lt;BR /&gt;* Fill in host and port for Qlik engine&lt;BR /&gt;*/&lt;BR /&gt;var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );&lt;/P&gt;&lt;P&gt;var config = {&lt;BR /&gt;host: window.location.hostname,&lt;BR /&gt;prefix: prefix,&lt;BR /&gt;port: window.location.port,&lt;BR /&gt;isSecure: window.location.protocol === "https:"&lt;BR /&gt;};&lt;BR /&gt;//to avoid errors in dev-hub: you can remove this when you have added an app&lt;BR /&gt;var app;&lt;BR /&gt;require.config( {&lt;BR /&gt;baseUrl: (config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "" ) + config.prefix + "resources"&lt;BR /&gt;} );&lt;/P&gt;&lt;P&gt;require( ["js/qlik"], function ( qlik ) {&lt;/P&gt;&lt;P&gt;var control = false;&lt;BR /&gt;qlik.setOnError( function ( error ) {&lt;BR /&gt;$( '#popupText' ).append( error.message + "&amp;lt;br&amp;gt;" );&lt;BR /&gt;if ( !control ) {&lt;BR /&gt;control = true;&lt;BR /&gt;$( '#popup' ).delay( 1000 ).fadeIn( 1000 ).delay( 11000 ).fadeOut( 1000 );&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;$( "body" ).css( "overflow: hidden;" );&lt;BR /&gt;function AppUi ( app ) {&lt;BR /&gt;var me = this;&lt;BR /&gt;this.app = app;&lt;BR /&gt;app.global.isPersonalMode( function ( reply ) {&lt;BR /&gt;me.isPersonalMode = reply.qReturn;&lt;BR /&gt;} );&lt;BR /&gt;app.getAppLayout( function ( layout ) {&lt;BR /&gt;$( "#title" ).html( layout.qTitle );&lt;BR /&gt;$( "#title" ).attr( "title", "Last reload:" + layout.qLastReloadTime.replace( /T/, ' ' ).replace( /Z/, ' ' ) );&lt;BR /&gt;//TODO: bootstrap tooltip ??&lt;BR /&gt;} );&lt;BR /&gt;app.getList( 'SelectionObject', function ( reply ) {&lt;BR /&gt;$( "[data-qcmd='back']" ).parent().toggleClass( 'disabled', reply.qSelectionObject.qBackCount &amp;lt; 1 );&lt;BR /&gt;$( "[data-qcmd='forward']" ).parent().toggleClass( 'disabled', reply.qSelectionObject.qForwardCount &amp;lt; 1 );&lt;BR /&gt;} );&lt;BR /&gt;app.getList( "BookmarkList", function ( reply ) {&lt;BR /&gt;var str = "";&lt;BR /&gt;reply.qBookmarkList.qItems.forEach( function ( value ) {&lt;BR /&gt;if ( value.qData.title ) {&lt;BR /&gt;str += '&amp;lt;li&amp;gt;&amp;lt;a data-id="' + value.qInfo.qId + '"&amp;gt;' + value.qData.title + '&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;str += '&amp;lt;li&amp;gt;&amp;lt;a data-cmd="create"&amp;gt;Create&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;BR /&gt;$( '#qbmlist' ).html( str ).find( 'a' ).on( 'click', function () {&lt;BR /&gt;var id = $( this ).data( 'id' );&lt;BR /&gt;if ( id ) {&lt;BR /&gt;app.bookmark.apply( id );&lt;BR /&gt;} else {&lt;BR /&gt;var cmd = $( this ).data( 'cmd' );&lt;BR /&gt;if ( cmd === "create" ) {&lt;BR /&gt;$( '#createBmModal' ).modal();&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;} );&lt;BR /&gt;$( "[data-qcmd]" ).on( 'click', function () {&lt;BR /&gt;var $element = $( this );&lt;BR /&gt;switch ( $element.data( 'qcmd' ) ) {&lt;BR /&gt;//app level commands&lt;BR /&gt;&lt;BR /&gt;case 'page1':&lt;BR /&gt;page1();&lt;BR /&gt;break;&lt;BR /&gt;case 'page2':&lt;BR /&gt;page2();&lt;BR /&gt;break;&lt;BR /&gt;case 'clearAll':&lt;BR /&gt;app.clearAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'back':&lt;BR /&gt;app.back();&lt;BR /&gt;break;&lt;BR /&gt;case 'forward':&lt;BR /&gt;app.forward();&lt;BR /&gt;break;&lt;BR /&gt;case 'lockAll':&lt;BR /&gt;app.lockAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'unlockAll':&lt;BR /&gt;app.unlockAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'createBm':&lt;BR /&gt;var title = $( "#bmtitle" ).val(), desc = $( "#bmdesc" ).val();&lt;BR /&gt;app.bookmark.create( title, desc );&lt;BR /&gt;$( '#createBmModal' ).modal( 'hide' );&lt;BR /&gt;break;&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;//callbacks -- inserted here --&lt;BR /&gt;//open apps -- inserted here --&lt;BR /&gt;var app = qlik.openApp('020bedf4-b476-466e-b9cc-dea592f73d9f', config);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//get objects -- inserted here --&lt;BR /&gt;var model = [];&lt;BR /&gt;page1();&lt;BR /&gt;&lt;BR /&gt;function page1(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','ARNmpdM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','ZxDKp').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','NaKQwM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;function page2(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','JZMrdb').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','tmaqpf').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','nRxXG').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;function cleanup(){&lt;BR /&gt;$.each(models,function(i,e){&lt;BR /&gt;console.log('removed:', e);&lt;BR /&gt;e.close();&lt;BR /&gt;&lt;BR /&gt;});&lt;BR /&gt;models =[];&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;//create cubes and lists -- inserted here --&lt;BR /&gt;if ( app ) {&lt;BR /&gt;new AppUi( app );&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;} );&lt;/P&gt;</description>
    <pubDate>Fri, 29 Nov 2019 02:09:15 GMT</pubDate>
    <dc:creator>Hann</dc:creator>
    <dc:date>2019-11-29T02:09:15Z</dc:date>
    <item>
      <title>Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652507#M11887</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to mashup and currently following this tutorial&lt;/P&gt;&lt;P&gt;&lt;A href="https://youtu.be/-w-d1Am2cjY" target="_blank" rel="noopener"&gt;https://youtu.be/-w-d1Am2cjY&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I add the cleanup(); function in the page1 and page2 function, i will have an empty dashboard as below&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:59:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652507#M11887</guid>
      <dc:creator>Hann</dc:creator>
      <dc:date>2024-11-16T03:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652508#M11888</link>
      <description>&lt;P&gt;here is my&amp;nbsp; js script&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;* Bootstrap-based responsive mashup&lt;BR /&gt;* @owner Enter you name here (xxx)&lt;BR /&gt;*/&lt;BR /&gt;/*&lt;BR /&gt;* Fill in host and port for Qlik engine&lt;BR /&gt;*/&lt;BR /&gt;var prefix = window.location.pathname.substr( 0, window.location.pathname.toLowerCase().lastIndexOf( "/extensions" ) + 1 );&lt;/P&gt;&lt;P&gt;var config = {&lt;BR /&gt;host: window.location.hostname,&lt;BR /&gt;prefix: prefix,&lt;BR /&gt;port: window.location.port,&lt;BR /&gt;isSecure: window.location.protocol === "https:"&lt;BR /&gt;};&lt;BR /&gt;//to avoid errors in dev-hub: you can remove this when you have added an app&lt;BR /&gt;var app;&lt;BR /&gt;require.config( {&lt;BR /&gt;baseUrl: (config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port : "" ) + config.prefix + "resources"&lt;BR /&gt;} );&lt;/P&gt;&lt;P&gt;require( ["js/qlik"], function ( qlik ) {&lt;/P&gt;&lt;P&gt;var control = false;&lt;BR /&gt;qlik.setOnError( function ( error ) {&lt;BR /&gt;$( '#popupText' ).append( error.message + "&amp;lt;br&amp;gt;" );&lt;BR /&gt;if ( !control ) {&lt;BR /&gt;control = true;&lt;BR /&gt;$( '#popup' ).delay( 1000 ).fadeIn( 1000 ).delay( 11000 ).fadeOut( 1000 );&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;$( "body" ).css( "overflow: hidden;" );&lt;BR /&gt;function AppUi ( app ) {&lt;BR /&gt;var me = this;&lt;BR /&gt;this.app = app;&lt;BR /&gt;app.global.isPersonalMode( function ( reply ) {&lt;BR /&gt;me.isPersonalMode = reply.qReturn;&lt;BR /&gt;} );&lt;BR /&gt;app.getAppLayout( function ( layout ) {&lt;BR /&gt;$( "#title" ).html( layout.qTitle );&lt;BR /&gt;$( "#title" ).attr( "title", "Last reload:" + layout.qLastReloadTime.replace( /T/, ' ' ).replace( /Z/, ' ' ) );&lt;BR /&gt;//TODO: bootstrap tooltip ??&lt;BR /&gt;} );&lt;BR /&gt;app.getList( 'SelectionObject', function ( reply ) {&lt;BR /&gt;$( "[data-qcmd='back']" ).parent().toggleClass( 'disabled', reply.qSelectionObject.qBackCount &amp;lt; 1 );&lt;BR /&gt;$( "[data-qcmd='forward']" ).parent().toggleClass( 'disabled', reply.qSelectionObject.qForwardCount &amp;lt; 1 );&lt;BR /&gt;} );&lt;BR /&gt;app.getList( "BookmarkList", function ( reply ) {&lt;BR /&gt;var str = "";&lt;BR /&gt;reply.qBookmarkList.qItems.forEach( function ( value ) {&lt;BR /&gt;if ( value.qData.title ) {&lt;BR /&gt;str += '&amp;lt;li&amp;gt;&amp;lt;a data-id="' + value.qInfo.qId + '"&amp;gt;' + value.qData.title + '&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;str += '&amp;lt;li&amp;gt;&amp;lt;a data-cmd="create"&amp;gt;Create&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;BR /&gt;$( '#qbmlist' ).html( str ).find( 'a' ).on( 'click', function () {&lt;BR /&gt;var id = $( this ).data( 'id' );&lt;BR /&gt;if ( id ) {&lt;BR /&gt;app.bookmark.apply( id );&lt;BR /&gt;} else {&lt;BR /&gt;var cmd = $( this ).data( 'cmd' );&lt;BR /&gt;if ( cmd === "create" ) {&lt;BR /&gt;$( '#createBmModal' ).modal();&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;} );&lt;BR /&gt;$( "[data-qcmd]" ).on( 'click', function () {&lt;BR /&gt;var $element = $( this );&lt;BR /&gt;switch ( $element.data( 'qcmd' ) ) {&lt;BR /&gt;//app level commands&lt;BR /&gt;&lt;BR /&gt;case 'page1':&lt;BR /&gt;page1();&lt;BR /&gt;break;&lt;BR /&gt;case 'page2':&lt;BR /&gt;page2();&lt;BR /&gt;break;&lt;BR /&gt;case 'clearAll':&lt;BR /&gt;app.clearAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'back':&lt;BR /&gt;app.back();&lt;BR /&gt;break;&lt;BR /&gt;case 'forward':&lt;BR /&gt;app.forward();&lt;BR /&gt;break;&lt;BR /&gt;case 'lockAll':&lt;BR /&gt;app.lockAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'unlockAll':&lt;BR /&gt;app.unlockAll();&lt;BR /&gt;break;&lt;BR /&gt;case 'createBm':&lt;BR /&gt;var title = $( "#bmtitle" ).val(), desc = $( "#bmdesc" ).val();&lt;BR /&gt;app.bookmark.create( title, desc );&lt;BR /&gt;$( '#createBmModal' ).modal( 'hide' );&lt;BR /&gt;break;&lt;BR /&gt;}&lt;BR /&gt;} );&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;//callbacks -- inserted here --&lt;BR /&gt;//open apps -- inserted here --&lt;BR /&gt;var app = qlik.openApp('020bedf4-b476-466e-b9cc-dea592f73d9f', config);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//get objects -- inserted here --&lt;BR /&gt;var model = [];&lt;BR /&gt;page1();&lt;BR /&gt;&lt;BR /&gt;function page1(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','ARNmpdM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','ZxDKp').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','NaKQwM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;function page2(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','JZMrdb').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','tmaqpf').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','nRxXG').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;function cleanup(){&lt;BR /&gt;$.each(models,function(i,e){&lt;BR /&gt;console.log('removed:', e);&lt;BR /&gt;e.close();&lt;BR /&gt;&lt;BR /&gt;});&lt;BR /&gt;models =[];&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;//create cubes and lists -- inserted here --&lt;BR /&gt;if ( app ) {&lt;BR /&gt;new AppUi( app );&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;} );&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 02:09:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652508#M11888</guid>
      <dc:creator>Hann</dc:creator>
      <dc:date>2019-11-29T02:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652509#M11889</link>
      <description>&lt;P&gt;This is the empty dashboard. I need to comment the cleanup(); in the function page1 and page2 to make the object appear. But that defeat the purpose of this tutorial&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24645iF697D5266B1C5F0D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 02:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652509#M11889</guid>
      <dc:creator>Hann</dc:creator>
      <dc:date>2019-11-29T02:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652527#M11890</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;have you checked the browser console for errors?&lt;/P&gt;&lt;P&gt;Looks like a type when you create the models array, the trailing s is missing. That might cause the cleanup function to break.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 05:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652527#M11890</guid>
      <dc:creator>ErikWetterberg</dc:creator>
      <dc:date>2019-11-29T05:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652917#M11912</link>
      <description>&lt;P&gt;Hi Erik,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the console. I've check the code, it is the same as the tutorial.&lt;/P&gt;&lt;P&gt;var model = [];&lt;BR /&gt;page1();&lt;BR /&gt;&lt;BR /&gt;function page1(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','ARNmpdM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','ZxDKp').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','NaKQwM').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;function page2(){&lt;BR /&gt;cleanup();&lt;BR /&gt;app.getObject('QV03','JZMrdb').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV02','tmaqpf').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;app.getObject('QV01','nRxXG').then(model=&amp;gt;{models.push(model)});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;function cleanup(){&lt;BR /&gt;$.each(models,function(i,e){&lt;BR /&gt;console.log('removed:', e);&lt;BR /&gt;e.close();&lt;BR /&gt;&lt;BR /&gt;});&lt;BR /&gt;models =[];&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 558px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24702i5EB6A679C2C39245/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 02:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652917#M11912</guid>
      <dc:creator>Hann</dc:creator>
      <dc:date>2019-12-02T02:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652946#M11914</link>
      <description>&lt;P&gt;Hi Hann,&lt;BR /&gt;You have a typo&lt;BR /&gt;u start with&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;var model = [];&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;notice u used model without an S at the end&lt;BR /&gt;&lt;BR /&gt;buy then u push to :&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;models.push(model)}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;notice now u typed modelS&lt;BR /&gt;&lt;BR /&gt;so u need to fix the first declaration to:&lt;BR /&gt;&lt;SPAN&gt;var models = [];&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2019 07:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1652946#M11914</guid>
      <dc:creator>oz_moyal</dc:creator>
      <dc:date>2019-12-02T07:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Kill Hypercube</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1653383#M11921</link>
      <description>&lt;P&gt;Hi Oz_Moyal,&lt;/P&gt;&lt;P&gt;Thanks. I have tried it and yes its the typo.&lt;/P&gt;&lt;P&gt;I'd like to know if the user already have the pro/analyzer base subscription license, do they need any other additional license to implement the mashup or to integrate the object to another app?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 02:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Kill-Hypercube/m-p/1653383#M11921</guid>
      <dc:creator>Hann</dc:creator>
      <dc:date>2019-12-03T02:01:16Z</dc:date>
    </item>
  </channel>
</rss>

