Thanks, Daniel. I tried in both places. Same result for both. Alerts are blank. When doing it from the Email Server Profile, it's not clear which mailboxes are being tested. ....just an observation.
↧
Forum Post: RE: Test & Enable Mailboxes fails. Alerts are blank.
↧
Forum Post: Save notification when ribbon button is clicked
Hi all, I have a custom Button calling a Custom Plugin (Action) using javascript when clicked. If the button is clicked when the Form is already save it works very nicely. However, when a field is changed and the custom button is clicked before saving then there's a default Save notification poping up (below picture). How can I avoid this? Ideally, if the form is not saved, clicking the button will save the form and then execute the plugin without showing a save notification to the user. Thank you
↧
↧
Forum Post: RE: Regarding Xrm.Page.data.save().then is not working during Save operation in CRM 9.0
Hi , Its depends on your plugin is running asynchronous or synchronous mode . If your plugin is asynchronous mode then Xrm.Page.data.save().then statement will fire immediately so you cant see the progress bar. Make sure you registered plugin as synchronous mode. However you can try with this if your plugin code is asynchronous - function OnSaveForm() { Xrm.Utility.showProgressIndicator("Processing Record"); Xrm.Page.data.save().then(successSubmitCallback, errorSubmitCallback); } function successSubmitCallback() { // You can also check some flag here to retrieve some information related to entity record to confirm that your plugin execution completed. And based on that you can increase timeout if you don't want to set exact time. setTimeout(function () { Xrm.Utility.closeProgressIndicator(); },5000); // You can increase timeout as per your requirement } function errorSubmitCallback() { } Hope this helps.
↧
Forum Post: RE: Save notification when ribbon button is clicked
Hi Solago, Make sure you set the field setsubmitmode is always in the form onload which you are changing. Xrm.Page.getAttribute("FieldName").setSubmitMode("always");
↧
Forum Post: RE: Email status "Cancelled" after closing/resolved the Case
Hi Kael, Are you sure there is no custom logic that's doing this ? Because I don't think this is OOB behavior
↧
↧
Forum Post: RE: Save notification when ribbon button is clicked
Hi, Can you please check which dirty field is not allowing to open new window. If that field is locked (disable state) then please do use setSubmitmode("Always"). Also make sure that you are saving record before calling action function.
↧
Forum Post: RE: Email status "Cancelled" after closing/resolved the Case
Hi , Can you please is there any custom wf/plugin/js which is updating status and status reason in background.
↧
Forum Post: Slow saving and resolving cases.
We have a group of about 20 users that are experiencing extreme slowness when they create (save) or Resolve a case. I have seen save times as slow as 19 seconds for this group of users which are in the same security role and same biz unit. All other users in this remote site are not experiencing these slow times and are in different security roles. I have also tried saving cases using a test account which worked fine using one of these 20 users computers. Any ideas what may be causing these slow case/save/resolve times?
↧
Forum Post: RE: How to retrieve Emails based on Contact Guid or Email id using Fetch XML ?
Thanks it works !!
↧
↧
Forum Post: RE: duplicate detection rule "doesn't see" changing on no. of characters for a field
Publish all customization and also publish duplicate detection rule. Delete old duplicate detection rule.
↧
Forum Post: Management Reporter
Our company is using Great Plains 2015 crm. How do you open the Management Reporter program?
↧
Forum Post: RE: How to Calculate Duration using Calculated fields?
Ya can use calculated field. Use below code and put in Action pane of Calculated field Estimated Duration is whole no calculated fiel Code: DiffInDays(actualstart, scheduledend)
↧
Forum Post: RE: Email status "Cancelled" after closing/resolved the Case
Hi Kael, Please check following - - Is there any workflow you have on case status change event . - Do you have any plugin which is registered update or setstate message of the case.
↧
↧
Forum Post: RE: CRM for small business - is it Dynamics?
the problem is the price...SMB use to have a special offer, but not enymore. +100 us dol per user per month is not the price that an SMB org can afford
↧
Forum Post: RE: Slow saving and resolving cases.
Can you ask user to login from different PC and check that they are facing this problem on other PC or not? Ask them to clear cache.
↧
Forum Post: MS Dynamics 4.0 Registration Wizard
Hi, Due to server failure, I had to redo the Dynamics 4.0 installation from scratch on the new hardware. Everything went well and for 30 days CRM worked without a problem. Unfortunately, today the application reminded about registration and just stoped working. So I ran the Registration Wizard and clicked through the whole procedure. Unfortunately, at the end I got a message like in the attached picture. How can I activate Dynamics 4.0? Jacek
↧
Forum Post: RE: Slow saving and resolving cases.
They have cleared their cache and have tried from different pc's.....is there such thing as a corrupted CRM user profile? I ask that because its only affecting a handful of users and the problem follows them when they try on a different pc.
↧
↧
Forum Post: RE: Chart in Dynamics 365 Portal page is not filtering based on current logged in user
Hi AK3800 Rizwan's proposal can help you with viewing only records realted to you. You cannot enable/disable entity permissions by switch - it always portal wide operation done from CRM side. So you have options to use multiple views for different cases, but to have better options with charts, you can look into custom solution - fetchxml and separate chart library - see Colin's blog post for more details: colinvermander.com/.../dynamics-365-portals-use-aggregate-fetchxml-queries-and-chart-js
↧
Forum Post: Getting Error on Registering a Plugin
I have written a plugin and built it both in .NET 4.5.2 and 4.6.1 but on registering the assembly, I'm getting error which says With 4.5.2, getting this Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: Principal user (Id=5d7d81a2-47b1-e811-a98b-000d3a1a7fa7, type=8 , accessMode=0, roleCount=2 ) is missing prvCreatePluginAssembly privilege (Id=c81a03bb-4bfc-45a6-9184-e899ce26811a) Detail: a2311763-791e-4264-b569-f695598311dc -2147220960 ApiExceptionSourceKey Plugin/Microsoft.Crm.ObjectModel.PluginAssemblyService ApiOriginalExceptionKey Microsoft.Crm.CrmSecurityException: Principal user (Id=5d7d81a2-47b1-e811-a98b-000d3a1a7fa7, type=8 , accessMode=0, roleCount=2 ) is missing prvCreatePluginAssembly privilege (Id=c81a03bb-4bfc-45a6-9184-e899ce26811a) ---> Microsoft.Crm.CrmSecurityException: Principal user (Id=5d7d81a2-47b1-e811-a98b-000d3a1a7fa7, type=8 , accessMode=0, roleCount=2 ) is missing prvCreatePluginAssembly privilege (Id=c81a03bb-4bfc-45a6-9184-e899ce26811a) at Microsoft.Crm.BusinessEntities.SecurityLibrary.ThrowCrmSecurityException(SecurityPrincipal principal, Guid privilegeId, Int32 errorCode, ExecutionContext context) at Microsoft.Crm.BusinessEntities.SecurityLibrary.CheckPrivilege(Guid user, Guid privilege, ExecutionContext context) at Microsoft.Crm.BusinessEntities.SecurityExtension.PreCreateHandlerEntityPrivilegeCheck(Object sender, SecurityTraits traits, SecurityAttributes attributes, ExtensionEventArgs e) at Microsoft.Crm.BusinessEntities.SecurityExtension.PreCreateSecurityCheck(Object sender, ExtensionEventArgs e, BusinessEntity entity) at Microsoft.Crm.BusinessEntities.SecurityExtension.PreCreateHandler(ExtensionEventArgs e, Object sender) at Microsoft.Crm.BusinessEntities.BusinessProcessObject.PreCreateEventHandler.Invoke(Object sender, ExtensionEventArgs e) at Microsoft.Crm.BusinessEntities.BusinessProcessObject.<>c__DisplayClass162_0.<Create>b__0() at Microsoft.PowerApps.CoreFramework.ActivityLoggerExtensions.Execute[TResult](ILogger logger, EventId eventId, ActivityType activityType, Func`1 func, IEnumerable`1 additionalCustomProperties) at Microsoft.Xrm.Telemetry.XrmTelemetryExtensions.Execute[TResult](ILogger logger, XrmTelemetryActivityType activityType, Func`1 func) at Microsoft.Crm.ObjectModel.SdkEntityServiceBase.CreateInternal(IBusinessEntity entity, ExecutionContext context, Boolean verifyAction) --- End of inner exception stack trace --- at Microsoft.Crm.Extensibility.VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context) at Microsoft.Crm.Extensibility.PipelineInstrumentationHelper.Execute(Boolean instrumentationEnabled, String stopwatchName, ExecuteWithInstrumentation action, PipelineExecutionContext context) at Microsoft.Crm.Extensibility.Pipeline.<>c__DisplayClass2_1.<Execute>b__0() ApiStepKey 3ecabb1b-ea3e-db11-86a7-000a3a5473e8 ApiDepthKey 1 ApiActivityIdKey a2311763-791e-4264-b569-f695598311dc ApiPluginSolutionNameKey System ApiStepSolutionNameKey System Principal user (Id=5d7d81a2-47b1-e811-a98b-000d3a1a7fa7, type=8 , accessMode=0, roleCount=2 ) is missing prvCreatePluginAssembly privilege (Id=c81a03bb-4bfc-45a6-9184-e899ce26811a) 2018-09-13T18:15:26.6495816Z false a2311763-791e-4264-b569-f695598311dc -2147220960 Principal user (Id=5d7d81a2-47b1-e811-a98b-000d3a1a7fa7, type=8 , accessMode=0, roleCount=2 ) is missing prvCreatePluginAssembly privilege (Id=c81a03bb-4bfc-45a6-9184-e899ce26811a) 2018-09-13T18:15:26.6495816Z false Server stack trace: at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) Exception rethrown at [0]: at Microsoft.Crm.Tools.Libraries.RegistrationHelper.RegisterAssembly(CrmOrganization org, String pathToAssembly, CrmPluginAssembly assembly) at Microsoft.Crm.Tools.AssemblyRegistration.PluginRegistrationViewModel.btnregisterClick() With 4.6.1, getting this Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]: This plugin assembly uses version 4.6.1 of the .NET Framework. At this time Microsoft Dynamics 365 requires version 4.5.2 of the .NET Framework for plugin assemblies. Rebuild this assembly using .NET Framework version 4.5.2 and try again. Detail: d27876be-8193-4576-b2e0-9ce7913943b7 -2147204597 ApiExceptionSourceKey Plugin/Microsoft.Crm.ObjectModel.PluginAssemblyService ApiOriginalExceptionKey Microsoft.Crm.CrmException: This plugin assembly uses version 4.6.1 of the .NET Framework. At this time Microsoft Dynamics 365 requires version 4.5.2 of the .NET Framework for plugin assemblies. Rebuild this assembly using .NET Framework version 4.5.2 and try again. ---> Microsoft.Crm.CrmException: This plugin assembly uses version 4.6.1 of the .NET Framework. At this time Microsoft Dynamics 365 requires version 4.5.2 of the .NET Framework for plugin assemblies. Rebuild this assembly using .NET Framework version 4.5.2 and try again. at Microsoft.Crm.ObjectModel.TargetFrameworkVersionValidator.ValidateInternal() at Microsoft.Crm.ObjectModel.PluginValidatorBase.Validate() at Microsoft.Crm.ObjectModel.PluginAssemblyServiceInternal`1.ValidateAssemblyMetadata(ExecutionContext context, IBusinessEntity pluginAssembly, CrmPluginAssemblyMetadata assemblyMetadata) at Microsoft.Crm.ObjectModel.PluginAssemblyServiceInternal`1.VerifyRegistrationAbility(IBusinessEntity pluginAssembly, Boolean createCall, ExecutionContext context, CrmPluginAssemblyMetadata assemblyMetadata) at Microsoft.Crm.ObjectModel.PluginAssemblyServiceInternal`1.ValidateOperation(String operationName, IBusinessEntity entity, ExecutionContext context) at Microsoft.Crm.ObjectModel.SdkEntityServiceBase.CreateInternal(IBusinessEntity entity, ExecutionContext context, Boolean verifyAction) --- End of inner exception stack trace --- at Microsoft.Crm.Extensibility.VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context) at Microsoft.Crm.Extensibility.PipelineInstrumentationHelper.Execute(Boolean instrumentationEnabled, String stopwatchName, ExecuteWithInstrumentation action, PipelineExecutionContext context) at Microsoft.Crm.Extensibility.Pipeline.<>c__DisplayClass2_1.<Execute>b__0() ApiStepKey 3ecabb1b-ea3e-db11-86a7-000a3a5473e8 ApiDepthKey 1 ApiActivityIdKey d27876be-8193-4576-b2e0-9ce7913943b7 ApiPluginSolutionNameKey System ApiStepSolutionNameKey System This plugin assembly uses version 4.6.1 of the .NET Framework. At this time Microsoft Dynamics 365 requires version 4.5.2 of the .NET Framework for plugin assemblies. Rebuild this assembly using .NET Framework version 4.5.2 and try again. 2018-09-13T18:07:53.9931963Z false d27876be-8193-4576-b2e0-9ce7913943b7 -2147204597 This plugin assembly uses version 4.6.1 of the .NET Framework. At this time Microsoft Dynamics 365 requires version 4.5.2 of the .NET Framework for plugin assemblies. Rebuild this assembly using .NET Framework version 4.5.2 and try again. 2018-09-13T18:07:53.9931963Z false Server stack trace: at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc) at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) Exception rethrown at [0]: at Microsoft.Crm.Tools.Libraries.RegistrationHelper.RegisterAssembly(CrmOrganization org, String pathToAssembly, CrmPluginAssembly assembly) at Microsoft.Crm.Tools.AssemblyRegistration.PluginRegistrationViewModel.btnregisterClick() Any help will be appreciated. Thanks
↧
Forum Post: RE: How to add components of an existing solution to a new Dynamics developer toolkit, Package project.
I want to do this via the D365 Developer Toolkit i.e. the Project type "Dynamics 365 Package"
↧