yes, we are using this and it is used to send notification to approver and user. But actually I have requirement if any provisioning will failed it will notify to OPS team.
You could add a couple of steps in the workflow Identity Request Finalize which would check provisioningResult for failure, if provisioningResult status is failed, the second step would handle sending the emails. You could do this in a single step as well.
If you have custom workflow then you can add condirion in Finalize step.
List errors = wfcontext.getWorkflowCase().getErrors();
List msg = new ArrayList();
if(errors != null) {
for(Message error : errors) {
msg.add(error);
}
}
In Entitlement Update workflow, there should be one step after provisioning to check error msg.
`
Step name should be “Check Provisioning Errors”, You can add condition for your requirement. Or you can create your own Entitlement Update and use it in your workflow and add you condition so that OOB file will not gets impacted.