- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2023 09:38 AM
Hello All,
I have a requirement to make anything entered/inputted into my newly-created Description field on the Interactions form to carry over to the Description field on the Incident form, when the 'Create Incident' button on the Interactions is clicked.
Worth to note that the 'description' field on the Interactions form was just created by me. I couldn't find any existing field with such name on the Interactions table.
When I click on the 'Create Incident' UI button on the Interactions form, the incident was created and all the information from the Interactions form was copied into the Incident, EXCEPT for what I entered in the Interactions form Description field.
I'm very sure I'm missing a step. Do I need some sort of scripting or relationship created?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2023 10:38 AM - edited ‎05-26-2023 10:43 AM
Are you using Agent Workspace or Service Operations Workspace for this?
You can configure your workspace actions and this should be pretty simple, but I think the steps are slightly different for AW v SOW...I don't have a lot of experience with SOW, but in Agent Workspace, you just configure the UI action called "Create Incident" on the Interaction table (action name = ws_create_incident) -- see my screenshot below:
add this code between lines 11 and 12 = "inc.description = current.u_description;"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-26-2023 10:38 AM - edited ‎05-26-2023 10:43 AM
Are you using Agent Workspace or Service Operations Workspace for this?
You can configure your workspace actions and this should be pretty simple, but I think the steps are slightly different for AW v SOW...I don't have a lot of experience with SOW, but in Agent Workspace, you just configure the UI action called "Create Incident" on the Interaction table (action name = ws_create_incident) -- see my screenshot below:
add this code between lines 11 and 12 = "inc.description = current.u_description;"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2023 05:29 AM
It worked like a charm!
Thank you sir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-30-2023 09:04 AM
My pleasure, thanks for marking the solution as accepted! 🙂