Ability to re-analyse(re-open) a closed Problem record whereas once problem record has been re-analysed, re-analyse UI action should not visible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 04:15 AM
As a problem manager, Ability to re-analyse(re-open) a closed Problem record whereas once problem record has been re-analysed, re-analyse UI action should not visible.
- Labels:
-
Problem Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 04:20 AM
You need to create a new field (checkbox) called re_analyzed.
Create a UI Action configured as form button called Re-Analyse
In the condition should be
current.re_analyzed == false
Script
current.state = <give the desired state value>;
current.re_analyzed = true;
current.update();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-07-2022 03:04 AM
Did my response resolve your query? If yes please close this thread by marking my response as correct and helpful so that other readers can also benefit.
Otherwise let me know if you need more assistance.
Thanks and Regards,
Chandra Suvro Bose
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 11:06 PM
Did my response resolve your query? If yes please close this thread by marking my response as correct and helpful so that other readers can also benefit.
Otherwise let me know if you need more assistance.
Thanks and Regards,
Chandra Suvro Bose