<?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 Operations Manager Importing in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35118#M7167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi - I have added a custom field called Cost Centre on user objects for recharging purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me if I can import this information into OM for the relevant user objects via the DFM command line in the same way we input the email addresses with the mailmap option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas immediately tested!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2025 07:34:46 GMT</pubDate>
    <dc:creator>brycedeutsche</dc:creator>
    <dc:date>2025-06-05T07:34:46Z</dc:date>
    <item>
      <title>Operations Manager Importing</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35118#M7167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi - I have added a custom field called Cost Centre on user objects for recharging purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me if I can import this information into OM for the relevant user objects via the DFM command line in the same way we input the email addresses with the mailmap option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas immediately tested!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2025 07:34:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35118#M7167</guid>
      <dc:creator>brycedeutsche</dc:creator>
      <dc:date>2025-06-05T07:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Operations Manager Importing</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35123#M7168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ops Manager does not have a bulk loading option for custom comment fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; But you can use the 'dfm comment set' cli and create a script to perform bulk load (i presume you want to set the comment field for user objects in OM):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP 1 - Export the list of users &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ dfm report -q -F csv users | awk -F "," '{ print $2 }' &amp;amp;gt; users.csv &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; STEP 2 - Edit the csv file to add a second column which is the cost center. The file should look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;root,1001&lt;/P&gt;&lt;P&gt;wheel,2001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP 3 -  Set comment fields in OM (replacing &amp;amp;lt;comment-name&amp;amp;gt; with the name of the comment field you have created)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ cat users.csv | awk -F ","  '{ system("dfm comment set " $1 " &amp;amp;lt;comment-name&amp;amp;gt;=" $2) }' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; STEP 4 - Verify the values are entered&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ dfm report users-comments &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2008 15:24:23 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35123#M7168</guid>
      <dc:creator>raja</dc:creator>
      <dc:date>2008-04-15T15:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Operations Manager Importing</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35130#M7169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja - excellent, thanks This has provided so much functionality for reporting on business specific information within OM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The command we have added to our script which imports the mailmap is;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dfm comment set &lt;EM&gt;DOMAIN&lt;/EM&gt;\+userid+ "Cost Code"=TESTCOST &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using Windows hosts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 10:14:04 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/Operations-Manager-Importing/m-p/35130#M7169</guid>
      <dc:creator>brycedeutsche</dc:creator>
      <dc:date>2008-04-16T10:14:04Z</dc:date>
    </item>
  </channel>
</rss>

