<?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: ReturnWFAParamaters into attribute in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101622#M18000</link>
    <description>&lt;P&gt;There is a bug in the earlier versions of the vCO Package for WFA Integration where the returnWFAParameters is a string object instead of a properties object. &amp;nbsp;Be sure to update to the latest version of the package if you have not already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what the outputs should look like for the "NetApp WFA Workflow execution" vRO/vCO workflow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="2015-03-10 11_25_16-10.63.171.164 - Remote Desktop Connection.png" alt="2015-03-10 11_25_16-10.63.171.164 - Remote Desktop Connection.png" border="0" src="https://community.netapp.com/t5/image/serverpage/image-id/2281iEAA7122998AC72CF/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the correct type for that parameter you should now be able to access the values from a scriptable task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;// if you know the name of the WFA return parameter
System.debug("Returned value " + returnWFAParameters.get("someProperty") + " for parameter someProperty");

// if you want to enumerate all of the returned values
for (var key in returnWFAParameters.keys) {
  System.debug("Returned parameter " + key + " equals " + returnWFAParameters.get(key));
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
    <pubDate>Tue, 10 Mar 2015 15:28:31 GMT</pubDate>
    <dc:creator>asulliva</dc:creator>
    <dc:date>2015-03-10T15:28:31Z</dc:date>
    <item>
      <title>ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100982#M17875</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After running a workflow from VCO in WFA, I require some return Parameters (which have been set up in WFA correctly). After the VCO workflow finishes the parameters are outputted in the logs from the completed workflow in VCO, i need them in something I can reference later on for emailing out completetion email:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[2015-02-24 09:30:07.600] [I] Return Parameters:&lt;BR /&gt;[2015-02-24 09:30:07.601] [I] --qtree-name=xxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.602] [I] --volume-name=xxxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.603] [I] --volume-vfiler=xxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.604] [I] --export-pathname=xxxxx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I have substituted real values for x's)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the output of the workflow object "NetApp WFA Workflow execution" I have set the Local Parameter "returnWFAParamters" to a Source parameter with the same name (attribute- string) but for some reason this seems to be blank when the workflow has completed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I missing? Has anyone had this working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 10:33:01 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100982#M17875</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-02-24T10:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100988#M17876</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You have to play with&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Add-WfaWorkflowParameter&lt;/STRONG&gt; -Name namevar -Value $retVal to store value and&amp;nbsp;&lt;BR /&gt;$importedinitiators= &lt;STRONG&gt;Get-WfaWorkflowParameter&lt;/STRONG&gt; -Name namevar -ErrorAction Continue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;variable can even be a [array]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;François&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 13:33:06 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100988#M17876</guid>
      <dc:creator>francoisbnc</dc:creator>
      <dc:date>2015-02-24T13:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100989#M17877</link>
      <description>&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even though the variables are making it back to VCO? I need to add this powershell command to where exactly?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 13:48:26 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100989#M17877</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-02-24T13:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100990#M17878</link>
      <description>&lt;P&gt;You have to create &amp;nbsp;new commands or clone exsisting ones.&lt;/P&gt;&lt;P&gt;Modify the code to store the needed values with&amp;nbsp;&amp;nbsp;Add-WfaWorkflowParameter -Name namevar -Value $retVal.&lt;/P&gt;&lt;P&gt;Retrieve the values in the second command with&amp;nbsp;&amp;nbsp;Get-WfaWorkflowParameter -Name namevar, namevar is the named reference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;François&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 14:00:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/100990#M17878</guid>
      <dc:creator>francoisbnc</dc:creator>
      <dc:date>2015-02-24T14:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101036#M17889</link>
      <description>&lt;P&gt;Hi Mdaly,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would clone the send mail certified command, and before sending the email I would add this code ( using the correct returned parameters variables ) :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$returned_parameter1 = Get-WfaWorkflowParameter -Name nameofthereturnedparam1 -ErrorAction Continue&lt;BR /&gt;$returned_parameter2 = Get-WfaWorkflowParameter -Name nameofthereturnedparam2 -ErrorAction Continue&lt;BR /&gt;$returned_parameter3 = Get-WfaWorkflowParameter -Name nameofthereturnedparam3 -ErrorAction Continue&lt;BR /&gt;$returned_parameter4 = Get-WfaWorkflowParameter -Name nameofthereturnedparam4 -ErrorAction Continue&lt;/P&gt;&lt;P&gt;$AdditionalText = $AdditionalText + $returned_parameter1 + $returned_parameter2 + $returned_parameter3 + $returned_parameter4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way you add the variables inside the additional text ( body ) of the email. If you want to separate by line you can add + '\n' + in between the $returned_parameters&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 12:44:26 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101036#M17889</guid>
      <dc:creator>trentino123</dc:creator>
      <dc:date>2015-02-25T12:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101053#M17894</link>
      <description>&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your replies. I am not sure we are talking about the same things here. I am talking about how to get the return Paramters in VCO (Vcenter Orchestrator). I am able to get them printed out in the workflow log in VCO, but not into a variable which proves they are making it to VCO. I am not sure that anything more needs to be done in WFA... but could be wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:07:38 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101053#M17894</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-02-25T16:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101057#M17897</link>
      <description>&lt;P&gt;Hi Mdaly,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That actually happens often, because sometimes the returned parameter did not reach the WFA database ( it needs an OCUM or VCO refresh ). I don't know if that is your case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it was your case, you might need to get that value from VCO ( via powershell ) and then create the return parameters as Francois suggested.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, to get the LUN serial number after LUN creation and add it as return parameters I use the following code:&lt;/P&gt;&lt;P&gt;Get-WFALogger -Info -message $("Getting LUN Serial Number: " + $LunName)&lt;/P&gt;&lt;P&gt;$hexSerialNumber = $(Get-NcLunSerNbrHex -LunPath $LunPath)&lt;/P&gt;&lt;P&gt;Get-WFALogger -Info -message $("Adding Hex LUN Serial Number as WFA Return Parameter named: lunSerNbrHex")&lt;/P&gt;&lt;P&gt;Add-WfaWorkflowParameter -Name "LUN_SERIAL_NUMBER_HEX" -Value $hexSerialNumber -AddAsReturnParameter $true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The vpshere powercli commands cmdlet reference is :&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://www.vmware.com/support/developer/windowstoolkit/wintk40u1/html/"&gt;https://www.vmware.com/support/developer/windowstoolkit/wintk40u1/html/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:49:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101057#M17897</guid>
      <dc:creator>trentino123</dc:creator>
      <dc:date>2015-02-25T16:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101084#M17906</link>
      <description>&lt;P&gt;I have tried both these methods today. unfortunately the email is being sent from VCO not from WFA. I am either missing something or it isnt possible to get these as variables into VCO.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="lia-quilt-column lia-quilt-column-22 lia-quilt-column-right lia-quilt-column-main-right"&gt;&lt;DIV class="lia-quilt-column-alley lia-quilt-column-alley-right"&gt;&lt;DIV class="lia-message-author-username lia-component-user-name"&gt;&lt;SPAN class="UserName lia-user-name"&gt;&lt;SPAN class="login-bold"&gt;trentino123, your method works fine (and that is what I was using to get the Parameters in the first place), however when I run the workflow from VCO, the parameters dont populate the returnWFAParameters attribute. I also cant seem to find a way to run a poweshell command on the WFA server (from VCO) to grab these Paramaters.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-message-author-username lia-component-user-name"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-message-author-username lia-component-user-name"&gt;&lt;SPAN class="UserName lia-user-name"&gt;&lt;SPAN class="login-bold"&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 26 Feb 2015 09:34:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101084#M17906</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-02-26T09:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101091#M17910</link>
      <description>&lt;P&gt;Hi Mdaly,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please&amp;nbsp;correct me if I am wrong . You are executing a 7mode WFA workflow that involves also interaction with VCO, probably generating NAS storage and mounting the export on the VCO side. You are trying to have some return parameters, but you don't see any return parameter ( I though you did not see only the VCO returned paramaters ).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The returned parameters are easily filled out . If you created a volume1 for example with a command, you would start the return paramter input with volume1. &amp;nbsp;( after the . it will automatically start giving you the options ), then following for example &amp;nbsp;volume1.name or volume1.array.ip or volume1..vfiler.root_qtree for example . Did some of the return parameters worked for you ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can log what you want in a return parameter, you can clone the command and simply add the Francois code to create the return parameter variable and then adding the logged into to the returned parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Feb 2015 13:04:59 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101091#M17910</guid>
      <dc:creator>trentino123</dc:creator>
      <dc:date>2015-02-26T13:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101109#M17911</link>
      <description>&lt;P&gt;yes, it is 7m wfa workflow, which simply creates a volume and exports it, and I have set up return parameters for this workflow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="wfaEP.JPG" align="left" border="0" alt="wfaEP.JPG" src="https://community.netapp.com/t5/image/serverpage/image-id/2175i0DB93FF9819FABE6/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;in VCO I have set an attribute up to "catch" these Parameters from the return of the completed workflow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="mapping.JPG" align="left" border="0" alt="mapping.JPG" src="https://community.netapp.com/t5/image/serverpage/image-id/2176i66D21D2B4AABCFF3/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when the workflow runs, in the VCO System.log&amp;nbsp;I get this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[2015-02-24 09:30:07.600] [I] Return Parameters:&lt;BR /&gt;[2015-02-24 09:30:07.601] [I] --qtree-name=xxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.602] [I] --volume-name=xxxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.603] [I] --volume-vfiler=xxxxxx&lt;BR /&gt;[2015-02-24 09:30:07.604] [I] --export-pathname=xxxxx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;have removed the actual values and replaced with x's&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the attribute is empty once workflow is complete&lt;/P&gt;&lt;P&gt;&lt;IMG title="empty.JPG" border="0" alt="empty.JPG" src="https://community.netapp.com/t5/image/serverpage/image-id/2177i296EACD1E601D4AB/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully this makes sense? As is said earlier,&amp;nbsp;I can get the parameters in WFA, just not as I want them in VCO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Feb 2015 14:02:35 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101109#M17911</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-02-26T14:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101622#M18000</link>
      <description>&lt;P&gt;There is a bug in the earlier versions of the vCO Package for WFA Integration where the returnWFAParameters is a string object instead of a properties object. &amp;nbsp;Be sure to update to the latest version of the package if you have not already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what the outputs should look like for the "NetApp WFA Workflow execution" vRO/vCO workflow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="2015-03-10 11_25_16-10.63.171.164 - Remote Desktop Connection.png" alt="2015-03-10 11_25_16-10.63.171.164 - Remote Desktop Connection.png" border="0" src="https://community.netapp.com/t5/image/serverpage/image-id/2281iEAA7122998AC72CF/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With the correct type for that parameter you should now be able to access the values from a scriptable task.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;// if you know the name of the WFA return parameter
System.debug("Returned value " + returnWFAParameters.get("someProperty") + " for parameter someProperty");

// if you want to enumerate all of the returned values
for (var key in returnWFAParameters.keys) {
  System.debug("Returned parameter " + key + " equals " + returnWFAParameters.get(key));
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2015 15:28:31 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101622#M18000</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2015-03-10T15:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101627#M18004</link>
      <description>&lt;P&gt;Great, we had found this bug and corrected it manually. thanks for your write up of this issue.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2015 16:40:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/101627#M18004</guid>
      <dc:creator>mdaly1234</dc:creator>
      <dc:date>2015-03-10T16:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: ReturnWFAParamaters into attribute</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/107033#M18879</link>
      <description>&lt;P&gt;I ran into this issue and found that the Netapp Plugin package for VCO had a bug in that the variable type for "returnWFAParameters" is incorrect. &amp;nbsp;If I recall correctly it was set as type "array" or "string" but it should be type "Properties". &amp;nbsp;This allows the VCO package to correctly store the key - value pairs of the WFA return parameters. &amp;nbsp;I made the changes to the Netapp Plugin package and notified Netapp. &amp;nbsp;They told me they were aware of the bug. &amp;nbsp;Not sure if they ever release a fixed version. &amp;nbsp;My VCO administrator helped me modify the package, so I don't remember exactly how it was done.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2015 16:10:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/ReturnWFAParamaters-into-attribute/m-p/107033#M18879</guid>
      <dc:creator>DavidSpano</dc:creator>
      <dc:date>2015-07-06T16:10:32Z</dc:date>
    </item>
  </channel>
</rss>

