- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2022 01:56 PM
Is there a possibility for agents to move cases from one case type to another?
Example use case:
1. Customers can submit cases via email, but we give them one email address to do so for simplicity
2. When email received by SN, it creates a case for higher level case type
3. Once reviewed by agent, case is moved to lower level case type (or "leaf-level" as SN calls it)
Solved! Go to Solution.
- Labels:
-
Customer Service Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2022 12:52 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2022 02:32 PM
Hello,
Yes, that is possible.
I did a test with a record created in "Task" table that was updated to be an incident:
(Background script I executed)
var _task = new GlideRecord("task");
_task.get("9fc3b1b1972a0d10fabff97e6253af17");
_task.number = "";
_task.sys_class_name = "incident";
_task.update();
So, I would say that you can do similar if you replace the table names in the example!
The "secret" is to update the field "sys_class_name"!!
Please, if this answer is relevant for you, please mark it as correct and helpful.
Thanks,
Filipe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2022 12:30 AM
Thanks, yes indeed there is a technical method to do that. However I am wondering from a common practise point of view, is there anything OOB for this? Or if not, is there something funny in my use case and should I be doing something different? Nobody ever had cases logged into wrong case type?
I'd rather not start customising anything.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2022 12:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-23-2025 08:24 AM
Hey Stefan,
In this cases, the ideal situation will be to create an interaction record and assign it to your L1 support. The L1 support can then create a case out of it and assign it to the right team.
The best practice is to always create a case on the leaf level and never on the higher level.
Currently, there is no possibility to move case types. But I have heard that ServiceNow might release this functionality in the Australia release.