- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2024 01:35 AM - edited 12-05-2024 01:36 AM
lock reopening of closed incidents for integration and manually also
i want to hide button for manual reopen and for integration also
Chandan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2024 01:47 AM - edited 12-05-2024 01:48 AM
Hi @SD_Chandan
- You can write BR on incident table to prevent reopen
Check if state is being updated from 'closed'
current.state.changes()&¤t.state != 6;
if yes - current.setAbortAction(true)
- Hide Button Manually
check if the incident if it is in closed state set - action.setVisible(false)
- Add ACl on state field of incident to block changes if state is closed use script to return false
Thanks,
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2024 01:47 AM - edited 12-05-2024 01:48 AM
Hi @SD_Chandan
- You can write BR on incident table to prevent reopen
Check if state is being updated from 'closed'
current.state.changes()&¤t.state != 6;
if yes - current.setAbortAction(true)
- Hide Button Manually
check if the incident if it is in closed state set - action.setVisible(false)
- Add ACl on state field of incident to block changes if state is closed use script to return false
Thanks,
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2024 09:49 PM
@raj chavan thank you
Chandan