Make implementation and post implementation tasks required
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2023 06:25 AM
Is it possible to make the implementation and post implementation tasks mandatory, meaning they cannot be canceled and you can't move to the next stage until they are completed? I want to do this in our change module but don't want it to break any flows in other modules. Is this possible? If so, please provide guidance. Also, is there a way to add a pop up in the post implementation task to remind users to attach their verification output to the task before closing it?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2023 06:40 AM
Hi @LadySGRho89
Let's try with a Business Rule.
Sample below.
(function executeRule(current, previous /*null when async*/) {
current.setAbortAction(true);
gs.addErrorMessage('The implementation and post implementation tasks must be completed!');
})(current, previous);
Let me know if it works for you.
Cheers,
Tai Vu