- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2022 01:28 AM
Hi all,
I have a requirement where a case should be created from interaction when agent clicks on "Closed Abandoned" button on interaction form in CSM Workspace. How do I achieve this?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2022 11:33 AM
Hello,
If you are fine with my response, Please hit like and mark my response as correct if that helps.
Regards
Regards,
Musab

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2022 03:39 AM
Hello,
You can either add this in UI action or create after BR on Interaction table with proper condition, It's simple no ?
var x= new GlideRecord("table name"); //Replace your Desired Target Table
x.initialize();
x.short_description = current.short_description;
x.assignment_group='Enter Sys Id';
x.insert();
Regards,
Musab

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2022 11:33 AM
Hello,
If you are fine with my response, Please hit like and mark my response as correct if that helps.
Regards
Regards,
Musab