<?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: Step required to call the proc/func from any object which written in QV Editor in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989971#M337431</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A possible slow-down isn't the main-fact why the use of macros should be considered carefully. What does your macro(s)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2015 14:06:48 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-12-10T14:06:48Z</dc:date>
    <item>
      <title>Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989962#M337422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Forums,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had written the following code in Qlikview Editor which as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;//Start Here&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;OLEDB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;CONNECT&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TO&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Provider=SQLOLEDB.1;Persist Security Info=True;User ID=sales_user;Initial Catalog=dummdb;Data Source=dummv01;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=xxxxxxxxx;Use Encryption for Data=False;Tag with column collation when possible=False]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;XPassword&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ramramramram);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;TAB1:&lt;BR /&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Sql&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; Select * from dum_date;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Sub&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Proc_1&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; insert into dum_date (fld1) values('C');&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;End&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;sub&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt;//CALL Proc_1;&amp;nbsp;&amp;nbsp; [This one run fine]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 8pt;"&gt;//End here&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 8pt;"&gt;When I call&amp;nbsp; Proc_1 from the script editore it's work fine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 8pt;"&gt;&lt;STRONG&gt;But I want to call&amp;nbsp; Proc_1 from Command Button or Text Box object, ETC.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Can any body please provide me the solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 11:32:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989962#M337422</guid>
      <dc:creator />
      <dc:date>2015-12-10T11:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989963#M337423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not quite clear what do you want to do. But I think it's not possible in this way. If you want to query external data from the gui you could use &lt;A href="https://community.qlik.com/space/2064"&gt;Direct Discovery&lt;/A&gt; and if you want to write back into a database you should look here: &lt;A href="/t5/forums/searchpage/tab/message?q=write back&amp;amp;type=document"&gt;https://community.qlik.com/search.jspa?q=write+back&amp;amp;type=document&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 12:42:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989963#M337423</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T12:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989964#M337424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for quick response.&lt;/P&gt;&lt;P&gt;Let me explain you my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way we create the macro(As Function/Sub)&amp;nbsp; in EDIT MODULE and then we call on verious trigger type such, as on open, on select any column or object, on close, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same way the function/proc/sub which I had created as Qlikview Editor as show above. I want to call same on trigger type such as on open, close, select any column, or object, ETC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989964#M337424</guid>
      <dc:creator />
      <dc:date>2015-12-10T13:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989965#M337425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Routines which are created within the script couldn't be called on the gui - you could only call macro-routines but the most things should be possible with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:17:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989965#M337425</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T13:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989966#M337426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had created the macro in qvw which run's fine in desktop. But same QVW when I upload on server it doesn't work.&lt;/P&gt;&lt;P&gt;can you please let me know how I should configure it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:25:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989966#M337426</guid>
      <dc:creator />
      <dc:date>2015-12-10T13:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989967#M337427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the AJAX client macros won't work - with the IE plugin the most macros should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989967#M337427</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T13:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989968#M337428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am new in this. Can you please help me to knew AJAX client and IE Plugin. I knew this much thatelp&amp;nbsp; if macro run in qlikview desktop it should work in qlikview server as well. However which is not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible for you to send sample qvw file and help me to configure it in qlikview server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:51:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989968#M337428</guid>
      <dc:creator />
      <dc:date>2015-12-10T13:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989969#M337429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before going on, please read this: &lt;A href="https://community.qlik.com/qlik-blogpost/3700"&gt;Macros are Bad&lt;/A&gt; and think are there really no other ways to get your solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 13:57:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989969#M337429</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T13:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989970#M337430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I knew it slow down the application. But for me it is very important. It will be great helpful if you can help me on this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 14:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989970#M337430</guid>
      <dc:creator />
      <dc:date>2015-12-10T14:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989971#M337431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A possible slow-down isn't the main-fact why the use of macros should be considered carefully. What does your macro(s)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 14:06:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989971#M337431</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T14:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989972#M337432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to update one record in sql table with the help of macro on click of particular object. So it is must for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 15:03:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989972#M337432</guid>
      <dc:creator />
      <dc:date>2015-12-10T15:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989973#M337433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The IE plugin needs to be installed by the appropriate users and requirred therefore windows as OS which meant that mobile devices like smartphones or tablets don't work as well as apple machines (unless VM or dual-boot). Further you need to enable macro-execution within the qmc (server/system/security) but it's not sure that you get such macros to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also possible is to use AJAX with extensions like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3615"&gt;Data2Webservice Object Extension&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5970"&gt;SQL Writeback from QlikView extension object.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2015 17:00:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989973#M337433</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-10T17:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989974#M337434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for response.&lt;/P&gt;&lt;P&gt;But I don't know which IE Plugin I have to install. Can you please let me know?&lt;/P&gt;&lt;P&gt;One more question.&lt;/P&gt;&lt;P&gt;Today when I open the qvw file there is one dialogue box has appeare's. of which screen shot is attached.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="securit_prb.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/108729_securit_prb.jpg" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know how to enable the &lt;STRONG&gt;check box&lt;/STRONG&gt; of&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Always use this option for documents from this Qlikview Server&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;So, that I can tick it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then upload on the server. So, that macro migth run at server level as well. which may resolved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2015 08:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989974#M337434</guid>
      <dc:creator />
      <dc:date>2015-12-11T08:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989975#M337435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should install the plugin-version which comes with your server-installation in ... YourDrive:\YourServerFolder\Server\QlikViewClients\QlikViewPlugin. That the last check-box "Always .." is disabled had security reasons but I don't know which option is excactly responsible for this - see here the security tabs in user- and document security.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2015 08:35:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989975#M337435</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-11T08:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989976#M337436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks of your suggession. FYI, "\YourServerFolder\Server\QlikViewClients\QlikViewPlugin" folder already there with&lt;/P&gt;&lt;P&gt;some files which inculdes following files as well:-&lt;/P&gt;&lt;P&gt;1. QvPluginSetup.exe&lt;/P&gt;&lt;P&gt;2. QVPluginWin8andUp.exe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any some more suggession can you please give me. So, that I can achieve my goal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2015 09:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989976#M337436</guid>
      <dc:creator />
      <dc:date>2015-12-11T09:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Step required to call the proc/func from any object which written in QV Editor</title>
      <link>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989977#M337437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends from the OS of the users. QvPluginSetup.exe is for Win XP/Vista/7 and QVPluginWin8andUp.exe for Win 8/8.1/10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2015 10:31:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Step-required-to-call-the-proc-func-from-any-object-which/m-p/989977#M337437</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-12-11T10:31:32Z</dc:date>
    </item>
  </channel>
</rss>

