- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2015 09:32 AM
Is there an easy way to move all tickets with one categorization to another and then remove the one category so that we can eliminate tickets being categorized two different ways for the same function?
Solved! Go to Solution.
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2015 12:54 PM
Assuming you're an admin, you can also do it in the front end.
Get a list view that shows only the tickets of Category X. Right click in the list view header and select "update all"
On the update form that comes up, change the category to what you want.
Done.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2015 12:25 PM
Hi Chris,
You can use the list view and use multiple-row selection to do this. See Editing Multiple Records . If the records are on the order of thousands or higher, you might want to write a GlideRecord query and run it in scripts - background. Something like
var rec = new GlideRecord('incident'); rec.addQuery('category',2); rec.query(); while (rec.next()) { rec.category = 5; rec.update(); }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2015 12:28 PM
When you are done reassigning the tickets to your new category, do not try to delete the old category, just make it inactive and/or remove it from the choice lists. Basically, make it so that users will never see it. But don't try to actually delete the choice itself as this can cause unnecessary problems and complications.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-29-2015 08:49 AM
Thanks for the suggestion regarding making old or no longer used categories inactive instead of deleting them. I'll definitely do this moving forward.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2015 12:54 PM
Assuming you're an admin, you can also do it in the front end.
Get a list view that shows only the tickets of Category X. Right click in the list view header and select "update all"
On the update form that comes up, change the category to what you want.
Done.