<?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 Script execution not working in Access point in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261008#M98407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this option as well but no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I can export it by using the Send to XL option on chart, but the macro for the button is not working. I've checked all settings for Pop ups/Trusted Sites/File Downloads etc.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help in this is really appreciated. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jan 2012 03:19:53 GMT</pubDate>
    <dc:creator>ksasidhars</dc:creator>
    <dc:date>2012-01-11T03:19:53Z</dc:date>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261003#M98402</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;I wrote a script for a button object to export the pivot table to XL. This works good in developer client, but there seems to no action while trying in server through Access point. Could anyone let me know the reason? Appreciate your help. Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sasi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 00:20:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261003#M98402</guid>
      <dc:creator>ksasidhars</dc:creator>
      <dc:date>2012-01-10T00:20:34Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261004#M98403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are exporting from the server, make sure to use the serverSideExport() or serverSideExportEx() functions in your macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 00:33:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261004#M98403</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-01-10T00:33:40Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261005#M98404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karl, Thanks much for your responce. I'm a novice in qlikview. Could you please modify my below script to make this work at the server side. Thanks much in advance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB SendToExcel&lt;/P&gt;&lt;P&gt;SET chart = ActiveDocument.GetSheetObject("CH93")&lt;/P&gt;&lt;P&gt;SET p = chart.GetProperties&lt;/P&gt;&lt;P&gt;chart.SendToExcel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 01:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261005#M98404</guid>
      <dc:creator>ksasidhars</dc:creator>
      <dc:date>2012-01-10T01:03:04Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261006#M98405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for an application called APIGuide.qvw that can help you with your macros.&amp;nbsp; Here's an example from that guide:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set tb = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;tb.ServerSideExportEx "C:\test.xml" , ";" , 3 '0=HTML, 1=Text, 2=Bitmap, 3=XML, 4=QVD, 5=BIFF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BIFF would be exporting to Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 01:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261006#M98405</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-01-10T01:14:30Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261007#M98406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Karl. Really appreciate your help. Also, I'll surely follow your suggestion as well. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 02:16:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261007#M98406</guid>
      <dc:creator>ksasidhars</dc:creator>
      <dc:date>2012-01-10T02:16:47Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261008#M98407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this option as well but no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I can export it by using the Send to XL option on chart, but the macro for the button is not working. I've checked all settings for Pop ups/Trusted Sites/File Downloads etc.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help in this is really appreciated. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 03:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261008#M98407</guid>
      <dc:creator>ksasidhars</dc:creator>
      <dc:date>2012-01-11T03:19:53Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261009#M98408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sasi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you get the same result if you try to run the macro with the AJAX client, the IE Plugin?&amp;nbsp; What version of QV are you using?&amp;nbsp; Macros don't run in the AJAX client in version 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 18:40:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261009#M98408</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-01-17T18:40:17Z</dc:date>
    </item>
    <item>
      <title>Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261010#M98409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been checking on QV 11 and 10 SR3 with IE plugin. Both places it is failing when I use this script. But it works when I use the button availabale on the top Right of the chart or right click on chart. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks - Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 20:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261010#M98409</guid>
      <dc:creator>ksasidhars</dc:creator>
      <dc:date>2012-01-17T20:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Script execution not working in Access point</title>
      <link>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261011#M98410</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This has been reported as a bug to QT and got corrected in Qv 11 SR1 updated version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have attached Qv11 SR1 updated release notes for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It was mentioned as bug no: 45461 page no: 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andrew Hudson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2012 07:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-execution-not-working-in-Access-point/m-p/261011#M98410</guid>
      <dc:creator>adhudson</dc:creator>
      <dc:date>2012-04-16T07:01:21Z</dc:date>
    </item>
  </channel>
</rss>

