- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2024 11:51 AM
Hello,
I was looking answers for below questions
- For all the topics interactions created?
- Chat transcript table name?
- Table to get consolidated conversation topics and user?
- What all details gets captured in interaction table?
- Where the chat transcripts get stored?
- Analytics available for analyzing the chat transcript?
- Where the conversation between MS Teams and ServiceNow created, IMS/interaction/CB Msg record?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2024 01:45 PM
- An interaction is created for each conversation. A conversation begins when you initiate VA (usually via Greetings) and ends when the user completes all topics or it times out and the system ends it automatically.
- Transcripts are human-readable on the interaction table.
- Conversation topics and their users are in the sys_cs_conversation_topic table.
- What details get captured in the interaction table? Look at the fields automatically populated by the system - this is too broad of a question.
- Chat transcripts are again on the interaction table. They are populated only after the conversation is completed and they are derived from the sys_cs_message table (which is the non-human readable form of everything that makes up the transcript)
- Analyzing chat transcripts: Using Virtual Agent Topic Recommendations (servicenow.com)
- Conversations in Teams get the same interaction and sys_cs_conversation, etc. records created as from the web client. The difference is that the sys_cs_conversation record will be identified by Device Type = Microsoft Teams
Hope that helps.
p.s. please delete your duplicate post here so you don't waste anybody's time: Need to know about Virtual Agent - ServiceNow Community

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2024 01:45 PM
- An interaction is created for each conversation. A conversation begins when you initiate VA (usually via Greetings) and ends when the user completes all topics or it times out and the system ends it automatically.
- Transcripts are human-readable on the interaction table.
- Conversation topics and their users are in the sys_cs_conversation_topic table.
- What details get captured in the interaction table? Look at the fields automatically populated by the system - this is too broad of a question.
- Chat transcripts are again on the interaction table. They are populated only after the conversation is completed and they are derived from the sys_cs_message table (which is the non-human readable form of everything that makes up the transcript)
- Analyzing chat transcripts: Using Virtual Agent Topic Recommendations (servicenow.com)
- Conversations in Teams get the same interaction and sys_cs_conversation, etc. records created as from the web client. The difference is that the sys_cs_conversation record will be identified by Device Type = Microsoft Teams
Hope that helps.
p.s. please delete your duplicate post here so you don't waste anybody's time: Need to know about Virtual Agent - ServiceNow Community
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 09:56 AM
Thank you @Chris D for the response, that was helpful.