Is it possible to import 'Lists' as CSV file through the Asset Management Import Connector?
Best Answers
-
Matt_Medley Member Advanced IT Monkey ✭✭✭Anne-Claire_Hodgkins said:Unfortunately I have no knowledge of script or xml file writing/coding so I wouldn't be able to use and don't understand these solutions, enum or Powershell. As the 'Library' where the 'Lists' class as it were are kept is not a Cireson add on does this mean the Cireson Asset Management Import Connector can't be used for lists because it's not a Cireson data class add on? I know I looked at the mapping elements within the import connector and couldn't find Library or Lists as an option. I can understand and work with a CSV file, if its possible to use this with regards to Library and Lists.
https://gallery.technet.microsoft.com/Service-Manager-Enum-43e30552
5 -
David_Morris1 Member Advanced IT Monkey ✭✭✭Hi Anne,
you should update existing lists into a new MP most standard lists are in a sealed MP that cant be edited, if you has an existing Custom MP with list items (though not the cleanest) you should have no issues adding a new MP with additional items.
in the CSV template provided with the tools this shows existing lists that would be updated ie. Incidentclassificationenum (Incident Classification).
you need to put the existing list's enumeration name into the first column to find this if you don't know it run the below powershell on your management server
Import-module SMlets
get-scsmenumeration | where-object{$_.displayname -eq "Enter list Name"}
but most standard lists follow this trend
"class"List"Enum"
Ie.
IncidentSourceEnum
ChangeRiskEnum
ServiceRequestPriorityEnum6 -
damon_mulligan Cireson Consultant Advanced IT Monkey ✭✭✭I would be careful when using the https://gallery.technet.microsoft.com/Service-Manager-Enum-43e30552.
Please test in a non-production environment. When I used this tool, you were not able to edit the list in the Library > List section in the Console after populating it with this tool.
There is no easy process to mass update lists currently. The Asset Import tool CANNOT update list values.5
Answers
https://gallery.technet.microsoft.com/Service-Manager-Enum-43e30552
Hi,
maybe the following link will help you
https://community.cireson.com/discussion/921/import-and-manage-large-lists-in-scsm
https://gallery.technet.microsoft.com/Service-Manager-Enum-43e30552
you should update existing lists into a new MP most standard lists are in a sealed MP that cant be edited, if you has an existing Custom MP with list items (though not the cleanest) you should have no issues adding a new MP with additional items.
in the CSV template provided with the tools this shows existing lists that would be updated ie. Incidentclassificationenum (Incident Classification).
you need to put the existing list's enumeration name into the first column to find this if you don't know it run the below powershell on your management server
Import-module SMlets
get-scsmenumeration | where-object{$_.displayname -eq "Enter list Name"}
but most standard lists follow this trend
"class"List"Enum"
Ie.
IncidentSourceEnum
ChangeRiskEnum
ServiceRequestPriorityEnum
Please test in a non-production environment. When I used this tool, you were not able to edit the list in the Library > List section in the Console after populating it with this tool.
There is no easy process to mass update lists currently. The Asset Import tool CANNOT update list values.