Create case from interaction?

Sid_Takali
Kilo Patron
Kilo Patron

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? 

 

1 ACCEPTED SOLUTION

Musab Rasheed
Tera Sage
Tera Sage

Hello,

If you are fine with my response, Please hit like and mark my response as correct if that helps.

Regards

Please hit like and mark my response as correct if that helps
Regards,
Musab

View solution in original post

2 REPLIES 2

Musab Rasheed
Tera Sage
Tera Sage

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();
Please hit like and mark my response as correct if that helps
Regards,
Musab

Musab Rasheed
Tera Sage
Tera Sage

Hello,

If you are fine with my response, Please hit like and mark my response as correct if that helps.

Regards

Please hit like and mark my response as correct if that helps
Regards,
Musab