Agent Chat - Copy Interaction to Incident
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2020 07:23 AM
When testing Connect Support, I think I recall being able to create an Incident (as a Quick Action) which carried across into the Incident record the chat dialogue (cant recall what happened to any attachments exchanged during the Connect Chat dialogue).
Now we have bypassed Connect support and moved to implement Agent Chat (via Agent Workspace). Now when you create an Incident from a Chat (Interaction), the chat dialogue is no longer transferred to the Incident and there is no apparent link to the Interaction within the Incident record so that initial exchange of information is 'lost'. If i look at the Interactions table, i can see within the individual Interaction the Incident is listed as a Related Task.
Is it possible to capture the Interaction (chat dialogue) within the Incident record?
Is it then possible to automatically set the Contact Type when creating the Incident from a Chat interaction?
- Labels:
-
Agent Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-03-2021 10:00 AM
Hi NigelM,
I think we cannot write a business rule because there is already a UI action "create incident" which will create a new incident
So we need to add one more line in UI action to copy transcript to a specific field or work notes as mentioned by Ashutosh, it worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-10-2021 02:22 AM
Kindly, can you say how to create business rule for this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2022 07:44 PM
Hi Raja,
I wrote the below after-update BR on the interaction table and it did work. Please have a look. Thanks.
The condition of the BR should be the transcript is not empty.
*********
(function executeRule(current, previous /*null when async*/ ) {
// Add your code here
var query = "document_table=incident^interaction.number=" + current.number;
var irc = new GlideRecord("interaction_related_record");
irc.addEncodedQuery(query);
irc.query();
if (irc.next()) {
var inc = new GlideRecord("incident");
if (inc.get(irc.task.sys_id)) {
inc.work_notes = current.transcript + "";
inc.update();
}
}
})(current, previous);
********
Regards,
Nayan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2022 11:13 AM
Did you make it work. Same issue for me able to copy transcripts to Description field but it is not working for Work notes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2022 11:07 AM
I am able to copy the Transcript to Description but it is not working for Work Notes. Any idea why?