<?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 Dynamic Update Command in Macro not working in accesspoint in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472213#M176339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a macro that uses the DynamicUpdateCommand to insert records into a table. This works perfectly locally, but in accesspoint using the ie plugin (QV 11) the macro fails.&amp;nbsp; I'm trying to create a field to be used as a chart dimension, but that needs to be recalculated based on the user's selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have other macros that are working, so I think I have all of the settings right... including the document and server dynamic update settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my google research I came across something about needing something else in the licensing in order to do dynamic updates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me understand how to get this working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've included my macro code below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Karen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************************************************************&lt;/P&gt;&lt;P&gt;sub assignquartile()&lt;/P&gt;&lt;P&gt;set APP = ActiveDocument.GetApplication&lt;/P&gt;&lt;P&gt;UserID = ActiveDocument.Evaluate("OsUser()")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sqlstr = "DELETE FROM Dynamic_Dim_Table WHERE UserName = '"&amp;amp;UserID&amp;amp;"'"&lt;/P&gt;&lt;P&gt;SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr)&lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;sqlstr = ""&lt;/P&gt;&lt;P&gt;set tb=ActiveDocument.GetSheetObject("CH67")&lt;/P&gt;&lt;P&gt;batchcount = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for rw = 1 to tb.GetRowCount-1&lt;/P&gt;&lt;P&gt;set x = tb.GetCell(rw,0)&lt;/P&gt;&lt;P&gt;line = x.number&lt;/P&gt;&lt;P&gt;set y = tb.GetCell(rw,4)&lt;/P&gt;&lt;P&gt;cumpct = y.number&lt;/P&gt;&lt;P&gt;'msgbox(tb.GetCell(rw,2).number)&lt;/P&gt;&lt;P&gt;'msgbox(cumpct)&lt;/P&gt;&lt;P&gt;if cumpct &amp;lt; .25 then&lt;/P&gt;&lt;P&gt; qt = "First Quartile"&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp; if cumpct &amp;lt; .5 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Second Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if cumpct &amp;lt; .75 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Third Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Fourth Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sqlstr = sqlstr &amp;amp; "INSERT INTO * (LineNo,UserName,Quartile) VALUES ("&amp;amp;line&amp;amp;","&amp;amp;UserID&amp;amp;","&amp;amp;qt&amp;amp;");"&lt;/P&gt;&lt;P&gt;BatchCount = BatchCount+1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF BatchCount&amp;gt;6000 Then&lt;/P&gt;&lt;P&gt;'msgbox(sqlstr)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr) &lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;&amp;nbsp; sqlstr = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp; BatchCount = 0&lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;'msgbox(lineid.number)&lt;/P&gt;&lt;P&gt;'ActiveDocument.ShowPopup rw&amp;amp;" of "&amp;amp;tb.GetRowCount-1,.5&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sqlstr &amp;lt;&amp;gt; "" then&lt;/P&gt;&lt;P&gt; SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr) &lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; 'msgbox(now())&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;*************************************************************************************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jun 2013 19:25:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-13T19:25:00Z</dc:date>
    <item>
      <title>Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472213#M176339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a macro that uses the DynamicUpdateCommand to insert records into a table. This works perfectly locally, but in accesspoint using the ie plugin (QV 11) the macro fails.&amp;nbsp; I'm trying to create a field to be used as a chart dimension, but that needs to be recalculated based on the user's selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have other macros that are working, so I think I have all of the settings right... including the document and server dynamic update settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my google research I came across something about needing something else in the licensing in order to do dynamic updates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me understand how to get this working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've included my macro code below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Karen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************************************************************&lt;/P&gt;&lt;P&gt;sub assignquartile()&lt;/P&gt;&lt;P&gt;set APP = ActiveDocument.GetApplication&lt;/P&gt;&lt;P&gt;UserID = ActiveDocument.Evaluate("OsUser()")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sqlstr = "DELETE FROM Dynamic_Dim_Table WHERE UserName = '"&amp;amp;UserID&amp;amp;"'"&lt;/P&gt;&lt;P&gt;SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr)&lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;sqlstr = ""&lt;/P&gt;&lt;P&gt;set tb=ActiveDocument.GetSheetObject("CH67")&lt;/P&gt;&lt;P&gt;batchcount = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for rw = 1 to tb.GetRowCount-1&lt;/P&gt;&lt;P&gt;set x = tb.GetCell(rw,0)&lt;/P&gt;&lt;P&gt;line = x.number&lt;/P&gt;&lt;P&gt;set y = tb.GetCell(rw,4)&lt;/P&gt;&lt;P&gt;cumpct = y.number&lt;/P&gt;&lt;P&gt;'msgbox(tb.GetCell(rw,2).number)&lt;/P&gt;&lt;P&gt;'msgbox(cumpct)&lt;/P&gt;&lt;P&gt;if cumpct &amp;lt; .25 then&lt;/P&gt;&lt;P&gt; qt = "First Quartile"&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp; if cumpct &amp;lt; .5 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Second Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if cumpct &amp;lt; .75 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Third Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qt = "Fourth Quartile"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sqlstr = sqlstr &amp;amp; "INSERT INTO * (LineNo,UserName,Quartile) VALUES ("&amp;amp;line&amp;amp;","&amp;amp;UserID&amp;amp;","&amp;amp;qt&amp;amp;");"&lt;/P&gt;&lt;P&gt;BatchCount = BatchCount+1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF BatchCount&amp;gt;6000 Then&lt;/P&gt;&lt;P&gt;'msgbox(sqlstr)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr) &lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;&amp;nbsp; sqlstr = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp; BatchCount = 0&lt;/P&gt;&lt;P&gt;End if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;'msgbox(lineid.number)&lt;/P&gt;&lt;P&gt;'ActiveDocument.ShowPopup rw&amp;amp;" of "&amp;amp;tb.GetRowCount-1,.5&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sqlstr &amp;lt;&amp;gt; "" then&lt;/P&gt;&lt;P&gt; SET Result = ActiveDocument.DynamicUpdateCommand(sqlstr) &lt;/P&gt;&lt;P&gt; APP.WaitForIdle 500&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; 'msgbox(now())&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;*************************************************************************************&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2013 19:25:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472213#M176339</guid>
      <dc:creator />
      <dc:date>2013-06-13T19:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472214#M176340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We've got it working here, so I thought I'd post the solution to help anyone googling this same problem in the future:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are settings that need to be set correctly within the document as well as on the server... here are screen shots of our settings now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;within the document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;settings &amp;gt; Document properties&amp;gt;Server tab&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="42830" alt="Image 1.jpg" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/42830_Image+1.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the tools&amp;gt; edit module&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="42831" alt="Image2.jpg" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/42831_Image2.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="42832" alt="2013-06-17 15 22 08.jpg" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/42832_2013-06-17+15+22+08.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now that the macro is working on the server, we'll start testing it with multiple users... wish me luck &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 20:42:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472214#M176340</guid>
      <dc:creator />
      <dc:date>2013-06-17T20:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472215#M176341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also facing the similar issue. The A&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ctiveDocument.DynamicUpdateCommand is not working on Access Point. Although it works locally on my PC. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made all the changes what you have suggested like -&lt;/P&gt;&lt;P&gt;- Within Document&amp;gt;&amp;gt;Settings&amp;gt;&amp;gt;Document Properties&amp;gt;&amp;gt;ServerTab&lt;/P&gt;&lt;P&gt;- In Macro Reference Module Security -&amp;gt; System Access and Current Local Security -&amp;gt; Allow System Access&lt;/P&gt;&lt;P&gt;- On Server checking all the check box under Security&amp;gt;&amp;gt;Miscellaneous&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even after making all these changes the A&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ctiveDocument.DynamicUpdateCommand is not working&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be your best suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 20:33:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472215#M176341</guid>
      <dc:creator>hirenjadiya</dc:creator>
      <dc:date>2014-04-27T20:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472216#M176342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hiren,&lt;/P&gt;&lt;P&gt;We also have this problem - did you find a resolution?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 15:00:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472216#M176342</guid>
      <dc:creator>juleshartley</dc:creator>
      <dc:date>2014-10-21T15:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472217#M176343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Julian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We never did resolve this… the most I could find out was that macro functionality can work perfectly on the desktop, but be unstable on accesspoint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I’m sorry ☹  But if you find a way to make it work, please let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karen Bardon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 15:05:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472217#M176343</guid>
      <dc:creator />
      <dc:date>2014-10-21T15:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472218#M176344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;No problem - will let you know!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2014 08:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472218#M176344</guid>
      <dc:creator>juleshartley</dc:creator>
      <dc:date>2014-10-22T08:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472219#M176345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It was easy when you know it &lt;SPAN class="emoticon-inline emoticon_happy" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;User has to be in QlikView Administrator group in Windows in order to use Dynamic Update.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 10:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472219#M176345</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-18T10:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472220#M176346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - but they were!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 10:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472220#M176346</guid>
      <dc:creator>juleshartley</dc:creator>
      <dc:date>2014-11-18T10:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472221#M176347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Julian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can once again do all the setting given in above screenshot and then try to add yourself i QlikView Administrators Group (in QMC) . I was facing the same issue. Once I added my ID in QlikView Administrators Group and now its working fine in access point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 12:19:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472221#M176347</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-18T12:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472222#M176348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or Just send me your application (after removing your sensitive data ) with dummy data. Will check this out. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 12:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472222#M176348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-18T12:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Update Command in Macro not working in accesspoint</title>
      <link>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472223#M176349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi Chandel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Need your inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Did all the setting required for dynamic update mentioned above.Using action button for dynamic.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Working fine on desktop but not from access point?User is present in qlik admin group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Sep 2016 17:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dynamic-Update-Command-in-Macro-not-working-in-accesspoint/m-p/472223#M176349</guid>
      <dc:creator>mayankraoka</dc:creator>
      <dc:date>2016-09-30T17:14:51Z</dc:date>
    </item>
  </channel>
</rss>

