<?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 Parameterised EDX in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207553#M1284501</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You pass one value, a concatenation of 3 values, ex text "1000+2000+3000" . Just use a separator that does not interfere with the data.&lt;/P&gt;&lt;P&gt;When receiving, you can split the variable with function subfield, namely subfield(Var, '+' ,1) ; subfield(Var, '+' ,2) ; subfield(Var, '+' ,3)&lt;/P&gt;&lt;P&gt;-Alex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Nov 2010 13:17:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-11-17T13:17:22Z</dc:date>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207549#M1284495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know if its possible to pass a parameter in the URL to an event driven exectution? I'm looking to generate some price files as of a given point in time and need the user to be able to pass a date to server to include in the refresh. Any ideas?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207549#M1284495</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207550#M1284498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm going to assume you're running v9.&lt;/P&gt;&lt;P&gt;In the EDX call XML, you can specify a variable and it's value, that will be inserted in the document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Global method="RequestEDX" key="YOUR_EDX_KEY"&amp;gt;&lt;BR /&gt;&amp;lt;i_TaskIDOrTaskName&amp;gt;MyTask&amp;lt;/i_TaskIDOrTaskName&amp;gt;&lt;BR /&gt;&amp;lt;i_Password&amp;gt;EDX_PWD&amp;lt;/i_Password&amp;gt;&lt;BR /&gt;&lt;B&gt;&amp;lt;i_VariableName&amp;gt;testvar&amp;lt;/i_VariableName&amp;gt;&lt;BR /&gt;&amp;lt;i_VariableValueList&amp;gt;&lt;BR /&gt;&amp;lt;string&amp;gt;Value1&amp;lt;/string&amp;gt;&lt;BR /&gt;&amp;lt;/i_VariableValueList&amp;gt;&lt;BR /&gt;&lt;/B&gt;&amp;lt;/Global&amp;gt;&lt;/P&gt;&lt;P&gt;Currently, it seems to be limited to one variable, and one value.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jul 2010 08:56:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207550#M1284498</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2010-07-12T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207551#M1284499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, if you are just in need of the date/time in the reload, you can of course get that from a macro in the script exectution of the document (or the QV script function ReloadTime()), but I suppose it's not that easy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jul 2010 08:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207551#M1284499</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2010-07-12T08:57:38Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207552#M1284500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the EDX trigger still limited to only one variable or has that been changed? I'd like to be able to pass two variables with an EDX trigger, is this possible? If so, what would the structure look like? I've tried the following with no luck:&lt;/P&gt;&lt;P&gt;Example: I want to pass VarModelID = 2000 and VarCompanyID = 100&lt;/P&gt;&lt;P&gt;[..]&lt;BR /&gt;&amp;lt;i_VariableName&amp;gt;VarModelID&amp;lt;/i_VariableName&amp;gt;&lt;BR /&gt; &amp;lt;i_VariableValueList&amp;gt;&lt;BR /&gt; &amp;lt;string&amp;gt;2000&amp;lt;/string&amp;gt;&lt;BR /&gt; &amp;lt;/i_VariableValueList&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i_VariableName&amp;gt;VarCompanyID&amp;lt;/i_VariableName&amp;gt;&lt;BR /&gt; &amp;lt;i_VariableValueList&amp;gt;&lt;BR /&gt; &amp;lt;string&amp;gt;100&amp;lt;/string&amp;gt;&lt;BR /&gt; &amp;lt;/i_VariableValueList&amp;gt;&lt;/P&gt;&lt;P&gt;[..]&lt;/P&gt;&lt;P&gt;AND&lt;/P&gt;&lt;P&gt;[..]&lt;BR /&gt;&amp;lt;i_VariableName&amp;gt;VarModelID&amp;lt;/i_VariableName&amp;gt;&lt;BR /&gt;&amp;lt;i_VariableName&amp;gt;VarCompanyID&amp;lt;/i_VariableName&amp;gt;&lt;BR /&gt; &amp;lt;i_VariableValueList&amp;gt;&lt;BR /&gt; &amp;lt;string&amp;gt;2000&amp;lt;/string&amp;gt;&lt;BR /&gt; &amp;lt;string&amp;gt;100&amp;lt;/string&amp;gt;&lt;BR /&gt; &amp;lt;/i_VariableValueList&amp;gt;&lt;BR /&gt;[..]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestions? Is this not supported? Using version 9 SR6 with publisher/server licenses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Nov 2010 18:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207552#M1284500</guid>
      <dc:creator />
      <dc:date>2010-11-15T18:22:21Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207553#M1284501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You pass one value, a concatenation of 3 values, ex text "1000+2000+3000" . Just use a separator that does not interfere with the data.&lt;/P&gt;&lt;P&gt;When receiving, you can split the variable with function subfield, namely subfield(Var, '+' ,1) ; subfield(Var, '+' ,2) ; subfield(Var, '+' ,3)&lt;/P&gt;&lt;P&gt;-Alex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 13:17:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207553#M1284501</guid>
      <dc:creator />
      <dc:date>2010-11-17T13:17:22Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207554#M1284502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alexandru,&lt;/P&gt;&lt;P&gt;That is the temp solution that I had come up with as well. Works like a charm, but I was wondering if I could truly pass values to more than one variable. Support told me that only one variable is allowed, so this work around is what I will be using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 19:10:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207554#M1284502</guid>
      <dc:creator />
      <dc:date>2010-11-17T19:10:12Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207555#M1284503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the variablevaluelist is it possible to pass the characters in to it&amp;nbsp; like databasename since i am facing the issue like i am able to pass only one value if i send 1234 it is passing only 1. Any idea or suggestion on this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 16:02:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207555#M1284503</guid>
      <dc:creator>brindlogcool</dc:creator>
      <dc:date>2012-02-10T16:02:45Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207556#M1284504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;brindlogcool, So, any value you pass will only be the first character? Even text strings anc such? If so, I would report that as a bug. Is this still in version 9 or later?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2012 10:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207556#M1284504</guid>
      <dc:creator>StefanBackstrand</dc:creator>
      <dc:date>2012-02-13T10:44:30Z</dc:date>
    </item>
    <item>
      <title>Parameterised EDX</title>
      <link>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207557#M1284505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Stefan,&lt;/P&gt;&lt;P&gt; We were using QlikView 10 SR4, i am not able to find a way out so we have reinstalled the server and it is working fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2012 14:55:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameterised-EDX/m-p/207557#M1284505</guid>
      <dc:creator>brindlogcool</dc:creator>
      <dc:date>2012-02-13T14:55:21Z</dc:date>
    </item>
  </channel>
</rss>

