- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2024 11:02 AM
Good afternoon,
I have a requirement to set the contact type on an incident to Self Service when the incident is opened from a walk-up interaction.
Ive been looking at ui actions and ui policies and nothing is jumping out at me.
Any assistance would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2024 11:43 AM
Hello @Darlene York,
There is OOTB UI action 'Create Incident' on Interaction table.
You can add this line of code to existing script-
current.contact_type = self-service;
Reference documentation - Create an incident from an interaction
If my response helps you in any way, kindly mark this as Accepted Solution/Helpful and help in closing this thread.
Regards,
Shubham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2024 11:43 AM
Hello @Darlene York,
There is OOTB UI action 'Create Incident' on Interaction table.
You can add this line of code to existing script-
current.contact_type = self-service;
Reference documentation - Create an incident from an interaction
If my response helps you in any way, kindly mark this as Accepted Solution/Helpful and help in closing this thread.
Regards,
Shubham
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2024 12:16 PM
Thank you for your help!