<?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 variable / expression syntax? in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27459#M5764</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks kevin - this helps.&amp;nbsp; the info about editing functions is VERY handy:&amp;nbsp; what's the language used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as it turns out, one of the questions that prompted this post was because i didn't have enough parentheses to scope the arguments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; volPrefix&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'odi_' + toLower($SecurityZone) + ( $Size &amp;gt;= 500 ) ? '_unshared_' : '_shared_'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i should have had this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; volPrefix&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'odi_' + toLower($SecurityZone) + (( $Size &amp;gt;= 500 ) ? '_unshared_' : '_shared_')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how about the question of assigning labels to the user input options ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Aug 2011 00:59:17 GMT</pubDate>
    <dc:creator>pwl</dc:creator>
    <dc:date>2011-08-17T00:59:17Z</dc:date>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27446#M5758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a quick reference or cheat sheet on variable expression syntax somewhere ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know about things like&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myVarSetting&amp;nbsp; =&amp;nbsp;&amp;nbsp; 'my_prefix_' + $userInput&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i recall there was something along the lines of :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myVarSetting&amp;nbsp; =&amp;nbsp; ( $userInput &amp;gt;= 500 ) ? "big" : "small"&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also a way to give different labels to user input selection lists than the actual values, eg:&amp;nbsp;&amp;nbsp; the select widget says&amp;nbsp; "Option 1", "Option 2", etc&amp;nbsp; but the variable gets set to "opt_1", "opt_2", etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i've trawled through the various guides &amp;amp; handouts but cant see anythign at this level of detail...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 06:48:14 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27446#M5758</guid>
      <dc:creator>pwl</dc:creator>
      <dc:date>2025-06-05T06:48:14Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27451#M5760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer to your question of "is there a quick reference or cheat sheet on variable expression / syntax somewhere", is 'Not Yet'.&amp;nbsp; It's one of the many things we're working on and trying to make sure is there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That said, I wanted to provide a couple of examples for what you described.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giving a go at describing the syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variable expression value &lt;STRONG&gt;?&lt;/STRONG&gt; &amp;lt;true value&amp;gt;&lt;STRONG&gt;:&lt;/STRONG&gt;&amp;lt;not true value&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - whatever it is you're trying to evaluate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; expression - equals (==), greater than (&amp;gt;), less than (&amp;lt;), etc.&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - constant... part of the syntax&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;true value&amp;gt; - what value you want returned if the evaluation is true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;not true value&amp;gt; - what value you want returned if the evauation is not true&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example1:&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; $qtree1Name=="" ? " " :$qtree1Name&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; This is an example where there is Optional user inputs.&amp;nbsp; The user input of 'qtree1Name' is requested, and if NULL, then the returned value is space.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If the 'qtree1Name' is anything other than NULL then the returned value is whatever was provided as input for 'qtree1Name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This is an example where a Return Node in a Find Chart is used to evaluate user inputs.&amp;nbsp; In this case the 'NumberofDataVols' user input is evaluated to be less than a certain value.&amp;nbsp; Depending on the evaluation the CreateVol2 and CreateVol3 variables are set to 'true' or 'false'.&amp;nbsp; These are being used to control whether the commands in the workflow are Enabled at the time of planning and execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://community.netapp.com/legacyfs/online/12146_setupFC.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This is an example of using a Function to control what values are used based on user inputs.&amp;nbsp; This shows how to return a different value based on the user input provided.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://community.netapp.com/legacyfs/online/12154_envmapFunction.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 12:57:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27451#M5760</guid>
      <dc:creator>hill</dc:creator>
      <dc:date>2011-08-16T12:57:44Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27459#M5764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks kevin - this helps.&amp;nbsp; the info about editing functions is VERY handy:&amp;nbsp; what's the language used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as it turns out, one of the questions that prompted this post was because i didn't have enough parentheses to scope the arguments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; volPrefix&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'odi_' + toLower($SecurityZone) + ( $Size &amp;gt;= 500 ) ? '_unshared_' : '_shared_'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i should have had this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; volPrefix&amp;nbsp; =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'odi_' + toLower($SecurityZone) + (( $Size &amp;gt;= 500 ) ? '_unshared_' : '_shared_')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how about the question of assigning labels to the user input options ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 00:59:17 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27459#M5764</guid>
      <dc:creator>pwl</dc:creator>
      <dc:date>2011-08-17T00:59:17Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27463#M5767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The language used for the functions is MVEL.&amp;nbsp; You should just do a web search for MVEL, but a quick link for MVEL information would be here: &lt;A href="http://mvel.codehaus.org/" target="_blank"&gt;http://mvel.codehaus.org/.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not quite sure I understand what you're referring to in regards to assigning lables to user input options.&amp;nbsp; The user inputs are variables and they get set to a particular value.&amp;nbsp; Based on that value we can 'massage' them in certain ways in order to leverage them effectively in the workflows.&amp;nbsp; The functions help here too by being able to translate the input provided...and convert that to some other value that can be used within the workflow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll contact you offline to figure out what your asking.&amp;nbsp; Otherwise the short answer would be "No", for the question of "can we assign lables to user input variables?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll be in touch,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 18:50:53 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27463#M5767</guid>
      <dc:creator>hill</dc:creator>
      <dc:date>2011-08-17T18:50:53Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27468#M5769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the info the the language - that will help.&amp;nbsp; i've already been able to put together a couple of my own functions based on your advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since we're separated by the tyranny of timezones &lt;SPAN __jive_emoticon_name="silly" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.netapp.com/4.5.5/images/emoticons/silly.gif"&gt;&lt;/SPAN&gt;&amp;nbsp; &amp;amp; for reference for others, i'll try to expand on what i mean about labels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's say i set up a set of inputs like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://community.netapp.com/legacyfs/online/12240_Screen+shot+2011-08-18+at+9.24.10+AM.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See that i've set Security Zone to a enumerated set of strings: ipn,sec, con,&amp;nbsp; and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means i get a user input dialog that looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://community.netapp.com/legacyfs/online/12241_Screen+shot+2011-08-18+at+9.24.41+AM.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i would &lt;EM&gt;like&lt;/EM&gt; is to able to make what appears in the input dialog a list like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Internal Network&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Secure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Controlled&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Restricted&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Management&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but have the underlying values still remain "ipn","sec","con", etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would be equivalent to the HTML &amp;lt;SELECT&amp;gt; and &amp;lt;OPTION&amp;gt; tags, in this form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;SELECT name="SecurityZone"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;OPTION VALUE="ipn"&amp;gt;Internal Network&amp;lt;/OPTION&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;OPTION VALUE="sec"&amp;gt;Secure&amp;lt;/OPTION&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;OPTION VALUE="con"&amp;gt;Controlled&amp;lt;/OPTION&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/SELECT&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is really only relevant because i am supplying an enumerated list of fixed values (rather than expecting free input)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no in-built way to do this within the workflow preferences then i'll just create a function.&amp;nbsp; in general, i'm trying to do what i can at the workflow level, before heading into the more sophisticated levels of customisation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 23:36:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27468#M5769</guid>
      <dc:creator>pwl</dc:creator>
      <dc:date>2011-08-17T23:36:32Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27473#M5771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I understand the issue and it is doable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 methods to achieve it and the methods depending on the number of values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Simple onaric test&lt;/P&gt;&lt;P&gt;2) Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say I have the following user input:&lt;/P&gt;&lt;P&gt;$Security_Zone =&amp;gt; string:Controlled,Secured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can create a simple Find chart that has just one return node, in which I define a new variable:&lt;/P&gt;&lt;P&gt;sec_zone =&amp;gt; $Security_Zone == "Controlled" ? "sec" : "con"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would make the transition to what you require pretty easily (BTW, I think we did that together back then&lt;/P&gt;&lt;P&gt;for translation of resource pools (HiCap,Fast...))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, if $Security_Zone had 3+ values, this method might lose its potency, and you can go with a function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will still define sec_zone in a seperate find chart with just return node:&lt;/P&gt;&lt;P&gt;sec_zone =&amp;gt; setSecurityZone($Security_Zone)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then go and define the following function:&lt;/P&gt;&lt;P&gt;def setSecurityZone(sec_zone)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (sec_zone == "Controlled")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { return "con"; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (sec_zone == "Secured")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { return "sec"; }&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;&amp;nbsp;&amp;nbsp; { return "abcd"; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously you can include more "if" statements as you wish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that answers the question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 17:02:37 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27473#M5771</guid>
      <dc:creator>yaronh</dc:creator>
      <dc:date>2011-08-18T17:02:37Z</dc:date>
    </item>
    <item>
      <title>variable / expression syntax?</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27481#M5773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Yaron&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't remember if we had put that logic in the define within the findpath or in the user input pane.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2011 05:07:00 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/variable-expression-syntax/m-p/27481#M5773</guid>
      <dc:creator>pwl</dc:creator>
      <dc:date>2011-08-19T05:07:00Z</dc:date>
    </item>
  </channel>
</rss>

