Share all details about your problem, including any error messages you may have received.
I want to customize Certification signoff popup window, add a form for user to fill some info, is it possible, if not, could we get the “Sign-Off Decision” button and
when user click the button, ask user to fill some info.
I am not sure but maybe you can do something with End Period Enter Rule or Sign off Approver Rule. You can try to launch a wf with the form but I am not sure if it is possibile.
I this page don’t have any configuration option to be customized based on your requirement .
Can you please share the use case what exactly you trying to solve ?
My customer require when certifier signoff to verify the application account attribue and when these attribute meet some conditions, the certifier need fill some info, if certifier no enter any info, they can’t signoff.
The scope of certification is verify/approve/revoke the permisions on identities.
Check directly the account attribute is not in this scope.
In SP you can use IT/BS roles and certificate it or use policies.
At least you can create a Certification Event with a rule that detect some perticular condition or if an attribute changes.
We can first use MutationOberserver to detect when the Sign-Off button is present into document.
Then we can do the following:
hide the original button, add a custom button, which will trigger a validation function to the backend.
on the backend, validate the certificate object, return any error messages back to frontend.
Within the validation function, after the response from the backend, if there is any error then present to the user. Otherwise, click the original sign-off button programatically.