AWA - Double accept required
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi all,
I configured an AWA queue as per the screenshot 1 but even if the auto assign is true, the user still has to accept the ticket when he opens it in the CSM/FSM Workspace (as per the screenshot 2).
Could you kindly tell me if there is a way to effectively bypass the second acceptance?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
hey @s_lore
Are you referring to the Accept action on the AWA inbox card, or a second Accept action shown after the case is opened in CSM/FSM Workspace?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
I'm referring the the accept at the record level, not in the inbox
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
hey @s_lore
One approach is to create a Before Business Rule on awa_work_item that changes the state from Pending Accept - Accepted. This can be done through the BR condition/action without necessarily requiring a script.
(function executeRule(current, previous) {
if (current.state == 'pending_accept') {
current.state = 'accepted';
}
})(current, previous);**********************************************************************************************************************
If this response helps, please mark it as Accept as Solution and Helpful.
Doing so helps others in the community and encourages me to keep contributing.
Regards
Vaishali Singh
Linkedin - https://www.linkedin.com/in/vaishali-singh-2273361bb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi,
Thanks for the reply, but as you can see in the screenshot below, the work item is already in state Accepted, so I don't need the BR.
Simone
