<?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: CALL parameters reusable? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292625#M622001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/6975"&gt;michielvandegoor&lt;/A&gt;‌, sub parameters are only available within the sub you're using them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this something you can use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;SUB ListFiles(pLocation, pReturnValue)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Do something&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET $(pReturnValue) = '$(pLocation)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;END SUB&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;CALL ListFiles('C:\downloads', 'vLocation')&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;After using this call statement there is a variable with the name &lt;SPAN style="font-size: 13.3333px;"&gt;'vLocation'&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jan 2017 09:18:42 GMT</pubDate>
    <dc:creator>gardenierbi</dc:creator>
    <dc:date>2017-01-23T09:18:42Z</dc:date>
    <item>
      <title>CALL parameters reusable?</title>
      <link>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292623#M621999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can CALL parameters be reused by creating variables from them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have something like this:&lt;/P&gt;&lt;P&gt;CALL ListFiles('C:\downloads') the parameter is, I guess, a 1 time variable? Or is it reusable in some way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is of course possbile to do it this way:&lt;/P&gt;&lt;P&gt;SET _location = C:\downloads and then CALL ListFiles('$('&lt;SPAN style="font-size: 13.3333px;"&gt;_location &lt;/SPAN&gt;') but then the variables have to be added extra as scripting parameters which I don't want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 07:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292623#M621999</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2017-01-23T07:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: CALL parameters reusable?</title>
      <link>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292624#M622000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that this will be possible - you will need to go the extra step and create (and probably delete) these variables within the script - for this could be include-variables quite helpful: &lt;A href="https://community.qlik.com/qlik-blogpost/4142"&gt;The $(Include) which you $(Must_Include) into your toolkit&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>Mon, 23 Jan 2017 07:48:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292624#M622000</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-01-23T07:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: CALL parameters reusable?</title>
      <link>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292625#M622001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/6975"&gt;michielvandegoor&lt;/A&gt;‌, sub parameters are only available within the sub you're using them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this something you can use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;SUB ListFiles(pLocation, pReturnValue)&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Do something&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET $(pReturnValue) = '$(pLocation)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;END SUB&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;CALL ListFiles('C:\downloads', 'vLocation')&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;After using this call statement there is a variable with the name &lt;SPAN style="font-size: 13.3333px;"&gt;'vLocation'&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 09:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292625#M622001</guid>
      <dc:creator>gardenierbi</dc:creator>
      <dc:date>2017-01-23T09:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: CALL parameters reusable?</title>
      <link>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292626#M622002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/26736"&gt;gardenierbi&lt;/A&gt; , looks promising but I need to test this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2017 09:46:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CALL-parameters-reusable/m-p/1292626#M622002</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2017-01-23T09:46:04Z</dc:date>
    </item>
  </channel>
</rss>

