- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2022 02:59 AM
Hi experts,
How to cancel a problem ticket? Is it possible to cancel it without adding any scripts from back end? Please suggest a solution for this.
Regards,
Sofiya
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2022 08:33 PM
Hi,
there is the OOTB UI Action "Cancel" on the problem table.
Basically, that UI Action sets the state to "Closed" and forces the user to enter a "Canceled reason", which is basically the close notes field but relabeled.
You can modify the UI Action so that it closes all related open Problem Tasks + send a note to all related incidents
Regards,
Vaishnavi Lathkar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2022 08:28 PM
Thanks for looking into the issue Aman! I have created a UI action already but I don't want cancelled option in the status field of the ticket. It must be hided. Is there any options to achieve it?
Regards,
Sofiya

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2022 11:05 PM
You can hide that option using onload client script:
g_form.removeOption("state",7);// check the field name and cancelled backend value
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2022 06:49 AM
Hey
Didn't hear back on this.
Is your issue resolved? If yes, feel free to mark helpful/correct, so it will be helpful for others looking for similar query.
You have marked the response as helpful but not correct?
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2022 08:33 PM
Hi,
there is the OOTB UI Action "Cancel" on the problem table.
Basically, that UI Action sets the state to "Closed" and forces the user to enter a "Canceled reason", which is basically the close notes field but relabeled.
You can modify the UI Action so that it closes all related open Problem Tasks + send a note to all related incidents
Regards,
Vaishnavi Lathkar