re-open ui action for incident
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 01:55 AM
Hi ,
I am configuring Re-open Ui action for Incident. This ui action should be visible only for caller and assigned to and state should change from resolved to in progress. how can i configure this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 02:01 AM
Hi @Atchutaram specify the below condition in UI Action condition
(current.caller_id == gs.getUserID() || current.assigned_to = gs.getUserID() ) && (current.state == 3) //ensure correct state value for in progress
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 02:33 AM
Hi @Harish KM it is working but after clicking on re-open the incident is not re-opened and state is in still resolved state. how can i do this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 02:40 AM
Hi @Atchutaram in script.section you need to set.the state value to.work.in progress
current.state = 3;// pass correct value here for work in progress state
current.update();
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2024 10:13 PM
Hi @Atchutaram is it working?
Harish
