Advanced Work Assignment: Looking to change functionality of "ACCEPT" in Inbox.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2024 04:46 AM - edited 09-17-2024 01:02 PM
Hi everyone,
when the state is New and i click on Accept in inbox, case assign myself and state changes to Open-assigned. Where as when the case is Open-unassigned and i click on Accept in inbox, case assign myself and state remains to Open-unassigned.
I tried modifying condition for Accept Ui action as well, it works on the case form but not on AWA inbox Accept.
I would like to know where we can modify Accept button in AWA., attaching screenshot for reference.
Any help/suggestion Appreciated.
Thank you
- Labels:
-
Agent Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2025 11:37 PM
Hi @Niranjan2 ,
I am also looking for the same solution, have you the resolved the problem, please do let me know if you have any lead on this problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 07:12 AM
Please refer the screenshot, i have created a new business rule for this on Work item table.
this worked for my requirement.
(function executeRule(current, previous /*null when async*/) {
current.active = true;
var caseGr = new GlideRecord('sn_customerservice_case');
caseGr.addQuery('sys_id',current.document_id);
caseGr.query();
if(caseGr.next()){
caseGr.state = 10; //state open
caseGr.update();
}
})(current, previous);
let me know if you have any questions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2025 02:40 AM
Thanks @Niranjan2 for you solution, I will look into this and let you know if I have any issues.