<?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 Passing multiple parameters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588356#M218160</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;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I appreciate that this has been discussed elsewhere, but the answers so far don't quite address my particular problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I'm trying to pass two parameters into a QV report which will specify 1.) The sheet to go to and 2.) The data that will be displayed on that sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The method I'm using is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;a.) Create a variable for each parameter. In my case they are named vSheet and vKeyClientName. These are both left blank.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;b.) Create a subprocedure with the following syntax:&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sub whenopen()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set v = ActiveDocument.GetVariable("vSheet")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.Sheets(v.GetContent.String).Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set f = ActiveDocument.Fields("CLIENT.NAME")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set g = ActiveDocument.GetVariable("vKeyClientName")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; f.select g.GetContent.String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end sub&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;c.) Create a document event trigger on OnOpen to run the 'whenopen' sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The parameter string I'm passing in for the &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;vKeyClientName parameter only&lt;/STRONG&gt; looks like:&lt;/P&gt;&lt;P style="padding-left: 30px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A class="jive-link-external-small unlinked" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;SPAN style="color: #000000;"&gt;http://servername/QvAJAXZfc/AccessPoint.aspx?open=&amp;amp;id=QVS@servername%7CQlikview/Documents/Aderant_KeyClient_v15.qvw&amp;amp;client=Plugin&amp;amp;urlparams=?vKeyClientName=*testclientname*&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I can use a very similar URL string to pass in the &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;vSheet parameter only.&lt;/STRONG&gt; Again, this works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The problem arises when I try to pass in both parameters using the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; padding-left: 30px;"&gt;&lt;A class="jive-link-external-small unlinked" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;http://servername/QvAJAXZfc/AccessPoint.aspx?open=&amp;amp;id=QVS@servername%7CQlikview/Documents/Aderant_KeyClient_v15.qvw&amp;amp;client=Plugin&amp;amp;urlparams=?vKeyClientName=*testclientname*&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="color: #3d3d3d;"&gt;&amp;amp;vSheet=9&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This URL string results in neither parameter being recognised. No error is thrown by the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can anyone suggest what I'm doing wrong here? All I have read so far seems to indicate that an ampersand between parameters should result in both being processed?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks, Gavin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Mar 2014 09:58:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-18T09:58:26Z</dc:date>
    <item>
      <title>Passing multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588356#M218160</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;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I appreciate that this has been discussed elsewhere, but the answers so far don't quite address my particular problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I'm trying to pass two parameters into a QV report which will specify 1.) The sheet to go to and 2.) The data that will be displayed on that sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The method I'm using is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;a.) Create a variable for each parameter. In my case they are named vSheet and vKeyClientName. These are both left blank.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;b.) Create a subprocedure with the following syntax:&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sub whenopen()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set v = ActiveDocument.GetVariable("vSheet")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.Sheets(v.GetContent.String).Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set f = ActiveDocument.Fields("CLIENT.NAME")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; set g = ActiveDocument.GetVariable("vKeyClientName")&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; f.select g.GetContent.String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 60px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end sub&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;c.) Create a document event trigger on OnOpen to run the 'whenopen' sub.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The parameter string I'm passing in for the &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;vKeyClientName parameter only&lt;/STRONG&gt; looks like:&lt;/P&gt;&lt;P style="padding-left: 30px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A class="jive-link-external-small unlinked" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;SPAN style="color: #000000;"&gt;http://servername/QvAJAXZfc/AccessPoint.aspx?open=&amp;amp;id=QVS@servername%7CQlikview/Documents/Aderant_KeyClient_v15.qvw&amp;amp;client=Plugin&amp;amp;urlparams=?vKeyClientName=*testclientname*&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I can use a very similar URL string to pass in the &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;vSheet parameter only.&lt;/STRONG&gt; Again, this works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The problem arises when I try to pass in both parameters using the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; padding-left: 30px;"&gt;&lt;A class="jive-link-external-small unlinked" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;SPAN style="color: #3d3d3d;"&gt;http://servername/QvAJAXZfc/AccessPoint.aspx?open=&amp;amp;id=QVS@servername%7CQlikview/Documents/Aderant_KeyClient_v15.qvw&amp;amp;client=Plugin&amp;amp;urlparams=?vKeyClientName=*testclientname*&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="color: #3d3d3d;"&gt;&amp;amp;vSheet=9&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This URL string results in neither parameter being recognised. No error is thrown by the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can anyone suggest what I'm doing wrong here? All I have read so far seems to indicate that an ampersand between parameters should result in both being processed?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks, Gavin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2014 09:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588356#M218160</guid>
      <dc:creator />
      <dc:date>2014-03-18T09:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Passing multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588357#M218161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Gavin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm whether a macro works fine with the first example or is it just the variable that works okay? It might be the order that QlikView does the on open task, or that the macro may not function properly in AJAX...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an aside, I have a similar issue passing parameters in a task to reload a document in publisher. It seems to only accept one variable, so my work around was to save one variable, and the content would be separated by pipes.&lt;/P&gt;&lt;P&gt;EG vLoadVariable=&amp;nbsp;&amp;nbsp; '01/04/2013|WEST|2'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The three variables I need for the script are calculated from this one value, using subfield to separate the individual items&lt;/P&gt;&lt;P&gt;SET vdate = subfield(vLoadVariable,1);&lt;/P&gt;&lt;P&gt;SET vArea = subfield(vLoadVariable,2);&lt;/P&gt;&lt;P&gt;SET vItem = subfield(vLoadVariable,3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could work around (although not ideal) by either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Set three variables in the document that are functions of the one parameter, using subfield; or&lt;/P&gt;&lt;P&gt;2) in the VB script, set the variables you need. dim vSubstring as string = vParameter.indexof('|')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erica&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2014 10:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588357#M218161</guid>
      <dc:creator />
      <dc:date>2014-03-18T10:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passing multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588358#M218162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Erica, that has answered my question. To answer your question, the macro did seem to work fine with the first example, but in any case I've used your suggestion of using a single variable with the components separated by pipes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The working code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sub whenopen()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Break single pass-in variable into chunks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set a = ActiveDocument.GetVariable("vKeyClientName")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c = instr(a.GetContent.String, "|")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Client = left(a.GetContent.String,c-1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet = right(a.GetContent.String,1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Activate Sheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Sheets(Sheet).Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Select Client Name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set f = ActiveDocument.Fields("CLIENT.NAME") &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f.select Client&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Gavin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2014 15:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588358#M218162</guid>
      <dc:creator />
      <dc:date>2014-03-18T15:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Passing multiple parameters</title>
      <link>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588359#M218163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem. Have just tried to pass more than one parameter myself in the URL too, would be interesting to see what the reason for it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erica&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2014 15:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Passing-multiple-parameters/m-p/588359#M218163</guid>
      <dc:creator />
      <dc:date>2014-03-18T15:51:31Z</dc:date>
    </item>
  </channel>
</rss>

