Make implementation and post implementation tasks required

LadySGRho89
Tera Expert

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

Tai Vu
Kilo Patron
Kilo Patron

Hi @LadySGRho89 

Let's try with a Business Rule.

Sample below.

TaiVu_0-1698327577570.png

(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