Quantcast
Channel: CRM Development Forum
Viewing all articles
Browse latest Browse all 888

Block Creation of Entity via Plugin

$
0
0

Problem: We use the CRM for Outlook plugin to automatically log our support emails, but internal emails between employees (some of which contain sensitive information) are also being logged.

Ideal Solution: I am attempting to write a pre-event (the "create email" message) plugin to block the automatic logging of internal emails, but (apparently) the only way to stop a message from being executed is to throw an exception in the pre-event phase, but this always results in an error message being shown in outlook (which we obviously can't have). According to the documentation, only the "InvalidPluginExecutionExeception" is supposed to show messages to the user, but this is not the case as all exceptions result in an error message in the user's Outlook application.

Potential Solution: There is also a "CheckPromoteEmail" message that (according to the documentation) determines whether or not an email should be promoted to the CRM (I assume "promoted to CRM" means "make an email entity to store in CRM"), but I couldn't find anything in the context that would let me tell CRM to not promote the email. Is there some flag buried in the context that I can set, or some way to invlaidate the email so the CRM's own logic decides to not store it?

Workaround Solution: The only other solution that I am aware of to just clear the subject and contents of the email after it has been created, but I would rather stop the email from being created in the first place than editing or deleting it after time and resources have been wasted creating the email.

Is there a clean way to stop an operation from a plugin? Or from anywhere? If there isn't, does anyone know why Microsoft didn't provide this feature? They already have ironclad rollback functionality under the hood in case an operation fails, why don't they just give me a way to call the rollback?

Here's my code in case it's helpful in answering my question:

publicclassInternalEmailFilter:IPlugin{voidIPlugin.Execute(IServiceProvider serviceProvider){IPluginExecutionContext _context =(IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));Entity e =(Entity)_context.InputParameters["Target"];
        bool shouldStore =ShouldStoreInCRM(e);if(shouldStore ==false){thrownewException();//attempting to stop the operation without an InvalidPluginExecutionException, but still results in error message to user}}protected bool ShouldStoreInCRM(Entity e){List<Entity> parties =newList<Entity>();var atttributes = e.Attributes;if(atttributes.ContainsKey("to")==true) parties.AddRange((atttributes["to"]asEntityCollection).Entities);if(atttributes.ContainsKey("from")==true) parties.AddRange((atttributes["from"]asEntityCollection).Entities);if(atttributes.ContainsKey("cc")==true) parties.AddRange((atttributes["cc"]asEntityCollection).Entities);if(atttributes.ContainsKey("bcc")==true) parties.AddRange((atttributes["bcc"]asEntityCollection).Entities);foreach(Entity p in parties){if(p.LogicalName=="activityparty"&& p.Attributes.ContainsKey("addressused")==true&& p.Attributes["addressused"]!=null){if(p.Attributes["addressused"].ToString().ToLower().Contains("@ourdomain.com")==false){returntrue;//someone connected in the email is not an employee, store the email}}}returnfalse;//everyone was an employee, do not store          }}


Viewing all articles
Browse latest Browse all 888

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>