Quantcast
Channel: Microsoft Dynamics CRM Forum - Recent Threads
Viewing all 79901 articles
Browse latest View live

Dynamics 365 Portal Performance

$
0
0

We are planning to upgrade from Dynamics CRM 2013 to Dynamics 365. This may also include migrating from ADX portals to Dynamics 365 portals. Other than migration issues I saw people questioned about portal performance

https://community.dynamics.com/365/f/761/t/271632 

and later Microsoft release notes for October 18 states that they have done something to improve performance

https://docs.microsoft.com/en-us/business-applications-release-notes/october18/service/dynamics365-portal/   

That means there were some issues with performance. Since there is no performance documentation available https://community.dynamics.com/365/f/761/t/271632 

Could people who have recent experience with Dynamics 365 Portal please share their experince about portal performance. 


Security Role Entity - Customization

$
0
0

Hi Experts,

Clients want a Security Role view that only displays the name of the Security Role and would like some Role to be not visible on the view. I am checking the Security Role entity but it is not possible to Create a new view or Update an existing view. I have a System Administrator Role. 

Would like to know why can't I edit the Security Role Entity. Is it because it is a Managed Entity? What are the other Entity we can't customize in CRM/365?

Any info or links will be greatly appreciated. Thanks in advance.

importing base solution failed

$
0
0

Hi there, I'm new to CRM and looking for some help with a few issues

1) I work with CRM 2011 on premises. I was importing managed solution to test environment and the process is failed with the error: process can't be activated or deactivated.  name of the failed process: Contact outlook Filed Synchronization. I do not have any processes under process center.

2) I'm not able to overwrite UAT CRM database with production copy it gives error that exclusive access could not be obtained bcs the database is in use.   I tried killed process  and single mode, nothing works.  wondering if that somehow relates to point 1)

how do I fix both issues? thank you

Storage Limit

$
0
0

Hi, 

We are currently well over our storage limit in D365.  We are trying to bring this down by removing audit logs and looking at other options...

My question is - looking at organisation insights and I can see our AuditBase is using 9GB of data and the only audit partition in the system is the size of 5GB.  Is the Auditbase directly related to the Audit partitions in D365?

Also when I have deleted 3GB worth of Audit logs, organisation insights is showing that storage used has gone down by 6GB

Open the related entity tab on load of the Customer page in D365

$
0
0

Hi All,

We have a requirement when we open the customer record in Dynamics 365 it should open the related entity (survey response). We need to do this on load of the customer page. Attached the sample image.

Can someone help me out for this.

Solution import error

$
0
0

I made a full copy of a sandbox instance to create a Test instance.

The Dev instance has a Solution = Sample1(Unmanaged).

I added a new entity to this solution and some fields/form edits and trying to import in Test instance.

But getting an error while import which isnt related to the new entity added but Case entity.

Here's the error that I am getting(The field it is complaining about is a DateTime field (Calculated)):

An error has occurred. Try this action again. If the problem continues, check the Microsoft Dynamics 365 Community for solutions or contact your organization's Microsoft Dynamics 365 Administrator. Finally, you can contact Microsoft Support. : Microsoft.Crm.CrmException: You can only use a Date Only type of field.    at Microsoft.Crm.Workflow.Utils.SharedUtility.ThrowException(ErrorCode code, Object[] args)    at Microsoft.Crm.Workflow.Validators.SetAttributeValueStepValidator.ValidateAssignmentApplicability(ExpressionBase expression)    at Microsoft.Crm.ObjectModel.Validations.CalculatedFieldValidationVisitor.VisitConditionStep(ConditionStep conditionStep)    at Microsoft.Crm.ObjectModel.Validations.CalculatedFieldValidationVisitor.VisitWorkflowStep(WorkflowStep workflowStep)    at Microsoft.Crm.Metadata.AttributeService.ValidateFormulaDefinitionContentBySourceType(AttributeDescriptionPropertyBag attribute, WorkflowStep formula, ExecutionContext context, Boolean ignoreInvalidAttributes)    at Microsoft.Crm.Metadata.AttributeService.ProcessSourceTypeRules(AttributeInfo attributeInfo, MetadataBusinessEntity existingAttributeData, ExecutionContext context)    at Microsoft.Crm.Metadata.AttributeService.ValidateForUpdate(AttributeInfo attributeInfo, MetadataBusinessEntity existingAttributeData, Boolean isSystemAttributeCreate, ExecutionContext context, MetadataHelper metadataHelper)    at Microsoft.Crm.Metadata.AttributeService.<>c__DisplayClass80_0.<UpdateInternal>b__0()    at Microsoft.PowerApps.CoreFramework.ActivityLoggerExtensions.Execute(ILogger logger, EventId eventId, ActivityType activityType, Action action, IEnumerable`1 additionalCustomProperties)    at Microsoft.Xrm.Telemetry.XrmTelemetryExtensions.Execute(ILogger logger, XrmTelemetryActivityType activityType, Action action)    at Microsoft.Crm.Metadata.AttributeService.UpdateNoPrivilegeChecks(Guid attributeId, AttributeInfo attributeInfo, ExecutionContext context, MetadataHelper metadataHelper, Boolean mergeLabels)    at Microsoft.Crm.Metadata.AttributeService.Update(Guid attributeId, AttributeInfo attributeInfo, Boolean mergeLabels, MetadataHelper metadataHelper, ExecutionContext context)    at Microsoft.Crm.Tools.ImportExportPublish.ImportCalculatedFieldHandler.ImportItem()

How to hide views in advance find, system entity view

$
0
0

Hi!

Is there a way to hide a view in advance find, system entity view etc.. BUT will the view be used to one of the subgrids? Client doesn't want to many views and they just requested a particular view in a subgrid.

Microsoft Dynamics CRM Setup

$
0
0

Hello Everyone!

Hope all of you are well. Can any one tell me from where i download Microsoft Dynamics CRM Setup for windows server 2012 R2. Pic is following


Assign Entity from Code Activity- Entity Reference cannot have Id and Key Attributes empty

$
0
0

Hi All,

I'm in CRM online, 9.0. When I try to assign entity(opportunity) to some user, I got the exception bellow. I got the exception regardless if I use Update or AssignEntity Message (which is now deprecated). I'm quite sure there is no empty entity reference because I logged Id and logicalName of the EntityReference.  Also if I run the code from my desktop application there is no error. There is no error if I assign entity manually to the same user through UI. The workflow is run under System Administrator authority. The user to who I assign is System Administrator.

This is the code:

     QueryExpression query = new QueryExpression();
            query.EntityName = "opportunity";
            query.ColumnSet = new ColumnSet(new string[] {
                "ownerid" //, "owningteam",  "owninguser" I tried also fetching these two attributes and adding them to opportunity before the update
            }
            );
             FilterExpression criteria = new FilterExpression(LogicalOperator.And);
         //....some criteria modification
            query.Criteria = criteria;
            query.Orders.Add(new OrderExpression("createdon", OrderType.Descending));
            query.TopCount = 1;

            var ec = OrgService.RetrieveMultiple(query);
            if (ec?.Entities?.Count != 1) return false;
            try
            {
                Entity lastOpportunity = ec.Entities[0];

// I retrieve all fields of the opportunity because so it is made in Microsoft sample for assigning entity. But it doesn't work also if I create entity and add only OwnerId to the Entity(with or without owningteam and owninguser.
                Entity e1 =  OrgService.Retrieve("opportunity", opportunityId, new ColumnSet(true));
                e1.Attributes["ownerid"] = new EntityReference(((EntityReference)(e1.Attributes["ownerid"])).LogicalName, ((EntityReference)(e1.Attributes["ownerid"])).Id);
                // tried also this:
                 // e1.Attributes["ownerid"] = lastOpportunity.Attributes["ownerid"];
                 // and this
                // e1.Attributes["ownerid"] = new EntityReference( ((EntityReference)(e1.Attributes["ownerid"])).LogicalName,  ((EntityReference)(e1.Attributes["ownerid"])).Id);
                OrgService.Update(e1);
                 return true;
            }
            catch(Exception ex)
            {
                Logger.Trace(ex);
            }

Exception thrown by the Update is this:

 Entity Reference cannot have Id and Key Attributes empty. at
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.Sandbox.SandboxOrganizationService.Execute(String operation, Byte[] serializedRequest, Object sandboxTraceSettingsObj)
   at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)

Exception rethrown at [1]:
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at Microsoft.Crm.Sandbox.ISandboxOrganizationService.Execute(String operation, Byte[] serializedRequest, Object traceSettings)
   at Microsoft.Crm.Sandbox.SandboxOrganizationServiceWrapper.ExecuteInternal(OrganizationRequest request)
   at myFunction(myFunctionParameters

Dynamics 365 Portals and SharePoint Integration - global area

$
0
0

Hi community

D365 Portals has now the ability to integrate with SharePoint which is great.. but I am wondering if it would be possible to display a page in the portal to act as a global area to download the files within SharePoint? 

any ideas? 

thanks

Cases not created by Automatic Record creation

$
0
0

Hi,

I do get this error intermittently but there is no much info on the log file, can you help? Thanks

Plugin Trace:

[Microsoft.Xrm.Sdk.Workflow: Microsoft.Xrm.Sdk.Workflow.Activities.CreateEntity]
[CreateStep6]

 
 [Microsoft.Dynamics.Service.Plugins: Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate]
 [485c2908-cfd8-e611-80e8-00155db32b08: Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate: Create of incident]
 Entered Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.Execute(), Correlation Id: c97446e4-0e6a-4479-b176-77e237867b60, Initiating User: 656c56e6-ce14-e911-a81a-000d3ab24a78
 Exiting Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.Execute(), Correlation Id: c97446e4-0e6a-4479-b176-77e237867b60, Initiating User: 656c56e6-ce14-e911-a81a-000d3ab24a78
 


Error Message:

Unhandled exception:
Exception type: System.ServiceModel.FaultException`1[Microsoft.Xrm.Sdk.OrganizationServiceFault]
Message: An unexpected error occurred.Detail:
<OrganizationServiceFault xmlns:i="www.w3.org/.../XMLSchema-instance" xmlns="schemas.microsoft.com/.../Contracts">
  <ActivityId>1480203e-7c64-4024-b2c4-5ed0e7222f6a</ActivityId>
  <ErrorCode>-2147220970</ErrorCode>
  <ErrorDetails xmlns:d2p1="schemas.datacontract.org/.../System.Collections.Generic">
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiExceptionSourceKey</d2p1:key>
      <d2p1:value xmlns:d4p1="www.w3.org/.../XMLSchema" i:type="d4p1:string">Plugin/Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiOriginalExceptionKey</d2p1:key>
      <d2p1:value xmlns:d4p1="www.w3.org/.../XMLSchema" i:type="d4p1:string">Microsoft.Crm.CrmException: An unexpected error occurred. ---&gt; System.ArgumentNullException: Value cannot be null.
Parameter name: text
   at System.ServiceModel.FaultReasonText..ctor(String text)
   at System.ServiceModel.FaultReason..ctor(String text)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException, Boolean enableTrace)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Int32 errorCode)
   at Microsoft.Crm.Service.ObjectModel.IncidentService.ValidatePrimaryContact(Case incident, Boolean isUpdateCase)
   at Microsoft.Crm.Service.ObjectModel.IncidentService.PreValidateForCreate(Case incident)
   at Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.ExecuteCrmPlugin(LocalPluginContext localContext)
   at Microsoft.Dynamics.Solution.Common.PluginBase.Execute(IServiceProvider serviceProvider)
   at Microsoft.Crm.Extensibility.V5PluginProxyStep.ExecuteInternal(PipelineExecutionContext context)
   at Microsoft.Crm.Extensibility.VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)
   --- 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.&lt;&gt;c__DisplayClass2_1.&lt;Execute&gt;b__0()</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiStepKey</d2p1:key>
      <d2p1:value xmlns:d4p1="schemas.microsoft.com/.../Serialization" i:type="d4p1:guid">485c2908-cfd8-e611-80e8-00155db32b08</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiDepthKey</d2p1:key>
      <d2p1:value xmlns:d4p1="www.w3.org/.../XMLSchema" i:type="d4p1:int">4</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiActivityIdKey</d2p1:key>
      <d2p1:value xmlns:d4p1="schemas.microsoft.com/.../Serialization" i:type="d4p1:guid">1480203e-7c64-4024-b2c4-5ed0e7222f6a</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiPluginSolutionNameKey</d2p1:key>
      <d2p1:value xmlns:d4p1="www.w3.org/.../XMLSchema" i:type="d4p1:string">msdynce_Service</d2p1:value>
    </KeyValuePairOfstringanyType>
    <KeyValuePairOfstringanyType>
      <d2p1:key>ApiStepSolutionNameKey</d2p1:key>
      <d2p1:value xmlns:d4p1="www.w3.org/.../XMLSchema" i:type="d4p1:string">msdynce_Service</d2p1:value>
    </KeyValuePairOfstringanyType>
  </ErrorDetails>
  <Message>An unexpected error occurred.</Message>
  <Timestamp>2019-03-21T10:18:45.4969019Z</Timestamp>
  <ExceptionRetriable>false</ExceptionRetriable>
  <ExceptionSource i:nil="true" />
  <InnerFault>
    <ActivityId>1480203e-7c64-4024-b2c4-5ed0e7222f6a</ActivityId>
    <ErrorCode>-2147220970</ErrorCode>
    <ErrorDetails xmlns:d3p1="schemas.datacontract.org/.../System.Collections.Generic">
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiExceptionSourceKey</d3p1:key>
        <d3p1:value xmlns:d5p1="www.w3.org/.../XMLSchema" i:type="d5p1:string">Plugin/Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiOriginalExceptionKey</d3p1:key>
        <d3p1:value xmlns:d5p1="www.w3.org/.../XMLSchema" i:type="d5p1:string">Microsoft.Crm.CrmException: An unexpected error occurred. ---&gt; System.ArgumentNullException: Value cannot be null.
Parameter name: text
   at System.ServiceModel.FaultReasonText..ctor(String text)
   at System.ServiceModel.FaultReason..ctor(String text)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException, Boolean enableTrace)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException)
   at Microsoft.Dynamics.Solution.Common.CrmException..ctor(String message, Int32 errorCode)
   at Microsoft.Crm.Service.ObjectModel.IncidentService.ValidatePrimaryContact(Case incident, Boolean isUpdateCase)
   at Microsoft.Crm.Service.ObjectModel.IncidentService.PreValidateForCreate(Case incident)
   at Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.ExecuteCrmPlugin(LocalPluginContext localContext)
   at Microsoft.Dynamics.Solution.Common.PluginBase.Execute(IServiceProvider serviceProvider)
   at Microsoft.Crm.Extensibility.V5PluginProxyStep.ExecuteInternal(PipelineExecutionContext context)
   at Microsoft.Crm.Extensibility.VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)
   --- 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.&lt;&gt;c__DisplayClass2_1.&lt;Execute&gt;b__0()</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiStepKey</d3p1:key>
        <d3p1:value xmlns:d5p1="schemas.microsoft.com/.../Serialization" i:type="d5p1:guid">485c2908-cfd8-e611-80e8-00155db32b08</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiDepthKey</d3p1:key>
        <d3p1:value xmlns:d5p1="www.w3.org/.../XMLSchema" i:type="d5p1:int">4</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiActivityIdKey</d3p1:key>
        <d3p1:value xmlns:d5p1="schemas.microsoft.com/.../Serialization" i:type="d5p1:guid">1480203e-7c64-4024-b2c4-5ed0e7222f6a</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiPluginSolutionNameKey</d3p1:key>
        <d3p1:value xmlns:d5p1="www.w3.org/.../XMLSchema" i:type="d5p1:string">msdynce_Service</d3p1:value>
      </KeyValuePairOfstringanyType>
      <KeyValuePairOfstringanyType>
        <d3p1:key>ApiStepSolutionNameKey</d3p1:key>
        <d3p1:value xmlns:d5p1="www.w3.org/.../XMLSchema" i:type="d5p1:string">msdynce_Service</d3p1:value>
      </KeyValuePairOfstringanyType>
    </ErrorDetails>
    <Message>An unexpected error occurred.</Message>
    <Timestamp>2019-03-21T10:18:45.4969019Z</Timestamp>
    <ExceptionRetriable>false</ExceptionRetriable>
    <ExceptionSource i:nil="true" />
    <InnerFault>
      <ActivityId>1480203e-7c64-4024-b2c4-5ed0e7222f6a</ActivityId>
      <ErrorCode>-2147220970</ErrorCode>
      <ErrorDetails xmlns:d4p1="schemas.datacontract.org/.../System.Collections.Generic" />
      <Message>System.ArgumentNullException: Value cannot be null.
Parameter name: text</Message>
      <Timestamp>2019-03-21T10:18:45.4969019Z</Timestamp>
      <ExceptionRetriable>false</ExceptionRetriable>
      <ExceptionSource i:nil="true" />
      <InnerFault i:nil="true" />
      <OriginalException i:nil="true" />
      <TraceText i:nil="true" />
    </InnerFault>
    <OriginalException i:nil="true" />
    <TraceText i:nil="true" />
  </InnerFault>
  <OriginalException i:nil="true" />
  <TraceText>[Microsoft.Xrm.Sdk.Workflow: Microsoft.Xrm.Sdk.Workflow.Activities.CreateEntity]
[CreateStep6]

 
 [Microsoft.Dynamics.Service.Plugins: Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate]
 [485c2908-cfd8-e611-80e8-00155db32b08: Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate: Create of incident]
 Entered Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.Execute(), Correlation Id: c97446e4-0e6a-4479-b176-77e237867b60, Initiating User: 656c56e6-ce14-e911-a81a-000d3ab24a78
 Exiting Microsoft.Dynamics.Service.Plugins.PreOperationIncidentCreate.Execute(), Correlation Id: c97446e4-0e6a-4479-b176-77e237867b60, Initiating User: 656c56e6-ce14-e911-a81a-000d3ab24a78
 </TraceText>
</OrganizationServiceFault>

Service Calendar Type to list both Resource: Infrastructure and Resource: User

$
0
0

Hello All,

I am trying to list all of my resources I have in Paired Resource Groups, however when I have a mixture of Resource: Infrastructure and Resource: User, I cannot display the users in that Paired Resource Group.  I noticed that I could only pull up resources in the Resource: Infrastructure views that I have created with just that type and not users.  In the Service Calendar default "Resource" it lists both.  Is there a way to specify the criteria in the Advanced Find or add a new combined type like "Service Activity and Appointments" where I can see both?  I love the power to see all my resources and this would be great to see this on the Service Calendar.  Any help would be appreciated.

Jawnne

Unified Interface - Custom Button Xrm.Utility.invokeProcessAction error

$
0
0

Hello everyone,

I am facing an error on Unified Interface which I cannot reproduce on the classic UI on the browser. I created a custom Ribbon button which invokes a custom action, and I use that custom action to trigger a plugin. I am making use of the new Xrm WebAPI.

On the plugin I do populate a string output parameter in case any error message needs to be returned.  

It works fine on classic UI but on Unified Interface, a pop-up appears saying "Outdated Business Process Flow Definition" This action cannot be completed because business process flow definition is out of sync with the process action. 

Debugging on the browser, I realized that Xrm.InvokeProcessAction returns ErrorCallBack with 

error.message = An error has occurred. Try this action again. If the problem continues, check the Microsoft Dynamics 365 Community for solutions or contact your organization's Microsoft Dynamics 365 Administrator. Finally, you can contact Microsoft Support.

error.errorCode = 2147746581 (HEX 80040315) This action is not supported.

Below, I show the code I am using for it. 

I hope anyone can give me any insight to realize what is wrong on Unified Interface. Thanks in advance!

Xrm.Utility.showProgressIndicator("***********");
Xrm.Utility.invokeProcessAction(actionName, actionParameters)
.then(function (result) {
debugger;
var message = result.$Y_0.exceptionMessage;
if(message && message != "") {
formContext.ui.clearFormNotification("errorNotificationId");
Xrm.Utility.closeProgressIndicator();
formContext.ui.setFormNotification(message, "ERROR", "errorNotificationId");
}
else{
formContext.ui.clearFormNotification("errorNotificationId");
Xrm.Utility.closeProgressIndicator();
formContext.ui.setFormNotification("******.", "INFO", "errorNotificationId");
var entityFormOptions = {};
entityFormOptions["entityName"] = oppEntityName;
entityFormOptions["entityId"] = oppId;

setTimeout(function () {
Xrm.Navigation.openForm(entityFormOptions).then(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
});
}, 3000);
}
},
function (error) {
debugger;
var message = error.message;
});

CRM 365 on SQL Server 2017

$
0
0

Good Morning,

Could you please let me know if there is any update from Microsoft when they are going to release a roll up / hotfix to enable 365 to work on SQL Server 2017? I have a customer on SQL Server 2017 currently (They just had GP installed on the new server) and wants to migrate to this server.

Thanks,

Andrew

Is there a way to add colors to rows in a list on the dashboard? Or customize the colors in a dashboard based on a field?

$
0
0

Hello,

I would like to add some colors to different lists on the dashboards I have created. For example I would like to highlight a row in red if the due date field is within two days of the current date, if it is longer than that I would like to have rows in green and yellow based on duration.

I currently have Javascript that will do this but only works when looking at the view and not the dashboard since there doesn't seem to be a way load javascript when opening dashboards.

Is there any way to do this? Either supported or unsupported?

Thanks!


Visual studio for windows server 2012 R2

$
0
0

Hello everyone !

Hope all of you are well. I am trying to install "Microsoft Dynamics 365 Report Authoring Extension" in Windows server 2012 R2 but error occured of something is missing. So i found that before installing Report Authoring Extension, visual studio and sql server data tool must be installed so can anyone tell me which visual studio and which its version i download from visual studio subscription -> Downloads ?

dynamics 365 - adoption (Client API reference) not being added to multiselect option set

$
0
0

Hi,

In the Onchange event , I have the following line of code

formContext.getControl("new_subscriber").addOption({text: "My Name", value: 100000005});

It is added to the list in the case only , but not to the actual option set for future use

Any help is greatly appreciated

Dynamics 365 9.x

Error When Import Solution From SandBox Org. to Support Org.

Dynamics 365 Reporting Extensions is not installed on this computer

$
0
0

Hello Everyone !

Hope all of you are well. I am trying to install "CRM 2016 Service Pack 2 (Dec 2016)" on Windows server 2012 R2 but following error occured 

"Dynamics 365 Reporting Extensions is not installed on this computer".

I installed "Microsoft Dynamics 365 Report Authoring Extension" successfully but error is remain same so anyone can tell me what i do ?

CRM workflow fails with "The caller was not authenticated by the service"

$
0
0

One of our customers has created a workflow that contains an action to create a Form if certain criteria are met. When it hits this step, it always fails with the error "The caller was not authenticated by the service". The Job Owner for the workflow is a user that has user and security role of System Administrator. I can log in as this user and create the same Form manually without any issue at all.

There don't appear to be any errors reported in the Windows Event Log and I can't find anything directly related in IIS logs either.

I've Googled this error and there are quite a lot of cases of it occurring as a result of development/customization work, but I can't find any where it's occurred during a workflow.

Has anyone got any ideas on why this might be occurring?

Thanks

Viewing all 79901 articles
Browse latest View live


Latest Images

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