Hey,
I want to avoid the system to send Appointments to Dynamics contacts, so I used this Event to prevent this:
function preventmail() {
if(Xrm.Page.ui.getFormType() == 1) {
Xrm.Page.getAttribute('requiredattendees').setValue('');
}
}
This is running correctly, but only for the administrative role! For regular rules it's not running. What's going on here?
Best,
Hannes
*This post is locked for comments