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

Get specific entity in single fetch

$
0
0

Hi,

I have a guid and I need to check whether it is of Customer or Lead entity. I can do it with Lead fetch and Customer fetch. But that will have 2 fetches then. Is there any way to just pass the id to the FetchXML and then we can get the Customer/Lead if it is. Can I exclude the 2nd fetch or is that needed. Any workarounds please?

Thank you,


CRM 2011 many to many relationship offline not available

$
0
0

Hi,

we use the Outlook Client offline functionality. Unfortunately a many to many relationship between account and a custom entity is not available offline. However every record of account and the custom entity is available offline.

We have the latest UR18 installed. 

The definition of the relationship:

Offline:

Online:

Do you have any idea why?

Thanks for your help,

Chris

Error upgrading from CRM 2011 to CRM 2013 On-Premise

$
0
0

Hello,

When importing our CRM 2011 Organization into a new CRM 2013 Deployment, the import wizard stops with the following error:

"System.Exception: Error.ActionFailed Microsoft.Crm.Tools.Admin.PopulateDependencyNodesAction ---> System.Data.SqlClient.SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint "solution_base_dependencynode". The conflict occurred in database "tst_ru18_MSCRM", table "dbo.SolutionBase", column 'SolutionId'."

 

The CRM 2013 Deployment has Rollup 2 installed.

The CRM 2011 Organization database is at Rollup 18, but I also tried with Rollup 6 and 14, and I got the same error.

The CRM 2011 Organization comes from an acceptance environment and contains a managed solution with all the customizations. A weird thing is that the development organization has been upgraded without issue, but this one has all customizations in unmanaged state. That might be related to the import error.

 

It seems that the import process is trying to insert records into the DependencyNodeBase table, but as those records are referencing a solution that does not exist (yet ?), the table constraint "solution_base_dependencynode" breaks the INSERT statement.

 

I have activated the verbose logging on the CRM 2013 Deployment but the log does not give more information on what records cannot be inserted.

 

Would anyone know how to fix this issue ?

Thanks in advance.

Generating documents using Mail Merge templates

$
0
0

Hi

When a record is created, I want to generate a document (docx or pdf) using a mail merge template and store it in a folder on the network. I need to do this using a plugin. Is it possible?

Thanks

SureStep - Customer Readiness Assessment

$
0
0

Hello! 

I was wondering where and how partners can send invites for customers to take the Customer Readiness Assessment for SureStep?  It appears that all of the links/references (below) for this no longer exist. 

Microsoft Dynamics Sure Step Partner Assessments - http://surestep.adoptionroadmap.com/roadmap

Microsoft Dynamics Project Readiness Assessment  - http://projectreadiness.adoptionroadmap.com/

Project Assessment Dashboard - http://surestep.adoptionroadmap.com/roadmap/

If no one knows the answer, where I should direct the support request (MBS website or MPN) and pointers for helping MS steward the request (have experienced challenges getting non-technical support requests routed)  would be helpful.

Thank you,

AJL

CRM 2015 "Activity Feeds is not available while working offline." Error

$
0
0

Just upgraded an on-premises CRM 2013 environment to on-premises CRM 2015. Everything is working fine, except for Activity Feeds.

Activity Feed posts appear normally on individual record walls, but the Personal Wall is not working, both on the What's New page and on Dashboards.

Instead of seeing the Personal Wall posts, filters and other components as expected, I simply see the following error message:

Activity Feeds is not available while working offline.

I tried republishing all the solutions, reverting to the default SiteMap, checked permissions were OK, and plenty of other troubleshooting things. I'm logged in via the web (not Outlook), tried from both IE11 and Chrome with the same results.

Anyone have a clue?

My custom DashBoard is not showing in Dashboards.

$
0
0

Hi,

I'm unable to see my custom Dashboard in Settings->Customization->Dshboards.

Is there any way to locate my custom dashboard to this?

Thanks,

Kandarp 

Issues with 'Follow'

$
0
0

Hi Guys,

I have a new on-site install of CRM 2013.

Things seam to be running ok however i have an issue with the follow action.

I am logged in as myself (administrator). i navigate to a record and select follow. If i click the ellipses again the option now says un-follow. however if i navigate away from the record and reload it i am now not following it and have to select follow again? Then same happens if i log in as a different user with lower rights.

Weirdly if i chose to follow and then ask to un-follow (without navigating away from the page) i get a pop up box asking me to log in. If i put my user-name and password in, it wont take it and i have to cancel.

On a perhaps related point if i load up 'post configuration' i get the same log in pop up box which again wont take my user name. If i hit cancel then i can access and make changes to the items in the post configuration list option.

Am rather confused and cant find any help on a web search.

i am fairly new to CRM.

Help would be much appreciated.

Thanks


CRM 2015 Rollup 1?

$
0
0

Hi
Does anyone know when first rollup for CRM 2015 will be available for on prem?

Internet Explorer Opening Same Page for Different URLs

$
0
0

I am opening pop-up windows of PhoneCall entity using

window.open(url)

in javascript on IE(8, 10, 11). The screen-pop is being initiated from the Contact entity form on a particular event.

Problem here is that when screen-pop takes place the Contact entity page opens in that new window, same as the page from where the screen-pop up is being initiated, so basically I have screen-popped phonecall entity form from the contact entity page, but the same contact entity page is opened in the newly popped window.

If I copy the URL of newly popped window and close all previous windows and open that copies URL in a new window, than the same URL opens the expected Phone Call entity form pop-up.

(Note:

Following is the URL of Contact Entity Form(from pop-up is initiated)

http://1.2.3.4:5555/abc/main.aspx#48111914

Following is the URL of Phone Call Entity, which is opening same page is the above URL i.e. the Contact Entity page:

http://1.2.3.4:555/abc/main.aspx?etn=phonecall&pagetype=entityrecord&extraqs=callf%3D%20UC%20Test%20AB%26callt%3DEF%20Test%26calld%3Doutbouind%26calla%3D9727001190%26usitomer_guid%3D%7B42XXXXBE-61XB-XX11-XXBE-0XXXXD64EE01%7D%26en%3Dcon#723418264

Following is the JavaScript code of the method doing pop-ups:

function handlePhonecallScreenpop(callF, callT, callA, custid, entityN) {

    var extraqs = "cf=" + callF;
    extraqs += "&ct=" + callT;
    extraqs += "&cd=outd";
    extraqs += "&ca=" + callA;
    extraqs += "&cid=" + custid;
    extraqs += "&en=" + entityN;

    var url = webUrl() + "/main.aspx?etn=phonecall&pagetype=entityrecord&extraqs=" + encodeURIComponent(extraqs);
    window.open(url);
}

CRM Online 2015 Update.

$
0
0

Hi.

I have scheduled for CRM Online 2015 update. I am a little confused how to approach the update.

Here is my plan:

1. Update Internet Explorer to IE11 for all my CRM users

2.Download CRM 2015 for Outlook

3. After Microsoft  has update the Customization; I will assist my CRM users on how to Install or Upgrade the CRM 2013 for Outlook to CRM 2015.

Should I uninstall the CRM2013 first and do a fresh install of CRM2015 for Outlook? or Just run a upgrade.

Please advise.

Thank you

My custom DashBoard is not showing in Dashboards.

$
0
0

Hi,

I'm unable to see my custom Dashboard in Settings->Customization->Dshboards.

Is there any way to locate my custom dashboard to this?

Thanks,

Kandarp

Dynamic CRM 2013 LocalHost error

$
0
0

Hi i have this problem. and after a day of searching i finally gave up.

i followed a tutorial on how to install crm 2013 . everything installed successfully as instructed.

but now when i try to lauch the internet explorer to lauch crm i get the following error.

how do i fix this 

thanks

Server Error in '/' Application.


Could not load file or assembly 'System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Either a required impersonation level was not provided, or the provided impersonation level is invalid. (Exception from HRESULT: 0x80070542)

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.IO.FileLoadException: Could not load file or assembly 'System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Either a required impersonation level was not provided, or the provided impersonation level is invalid. (Exception from HRESULT: 0x80070542)

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].


Stack Trace:

[FileLoadException: Could not load file or assembly 'System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. Either a required impersonation level was not provided, or the provided impersonation level is invalid. (Exception from HRESULT: 0x80070542)]
   System.ServiceModel.BuildProviderInfo.EnsureInitialized() +0
   System.ServiceModel.ExtensionHelper.GetServiceType(String extension) +65
   System.ServiceModel.Activation.HttpModule.ProcessRequest(Object sender, EventArgs e) +196
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165

 


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34212             

How to change filters in the Opportunity Lookup View

$
0
0

Please,

I am working with CRM 2015. In the SalesOrder form, to Get Products from opportunity, I need to show only opportunities with the same account (client) of the sales order, not all opportunities. How can I achieve this?

Unable to Access System Settings Under Administration after Upgrade from 2013 to 2015 On premise

$
0
0

I have upgraded my org from 2013 to 2015 its was DB upgrade when I try to access System setting I get a generic error. it seems that its some thing related to language pack I check CRM 2013 org language settings  2 languages are shown but in CRM 2015 I cant see them .but in 2013 they are in disabled state .

 

Traces


 at RegionalOptions.Initialize()  ilOffset = 0xD
 at tools_systemsettings_dialogs_systemsettings_aspx.__BuildControlregionalOptions()  ilOffset = 0x6
 at tools_systemsettings_dialogs_systemsettings_aspx.__BuildControlcrmForm()  ilOffset = 0x3D5
 at tools_systemsettings_dialogs_systemsettings_aspx.FrameworkInitialize()  ilOffset = 0x19
 at Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  ilOffset = 0x9
 at Page.ProcessRequest()  ilOffset = 0x14
 at Page.ProcessRequest(HttpContext context)  ilOffset = 0x33
 at CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()  ilOffset = 0x18D
 at HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)  ilOffset = 0x15
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x10A
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
Duplicate DisplayName found for lcid '9242' - 'Serbian (Latin, Serbia)'.

 at RegionalOptions.Initialize()  ilOffset = 0xD
 at tools_systemsettings_dialogs_systemsettings_aspx.__BuildControlregionalOptions()  ilOffset = 0x6
 at tools_systemsettings_dialogs_systemsettings_aspx.__BuildControlcrmForm()  ilOffset = 0x3D5
 at tools_systemsettings_dialogs_systemsettings_aspx.FrameworkInitialize()  ilOffset = 0x19
 at Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)  ilOffset = 0x9
 at Page.ProcessRequest()  ilOffset = 0x14
 at Page.ProcessRequest(HttpContext context)  ilOffset = 0x33
 at CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()  ilOffset = 0x18D
 at HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)  ilOffset = 0x15
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x10A
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
Duplicate DisplayName found for lcid '10266' - 'Serbian (Cyrillic, Serbia)'.

 

at MainApplication.Application_Error(Object sender, EventArgs eventArguments)  ilOffset = 0x5E6
 at EventHandler.Invoke(Object sender, EventArgs e)  ilOffset = 0xFFFFFFFF
 at HttpApplication.RaiseOnError()  ilOffset = 0x26
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x85
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
Error while trying to send a report through Watson: System.ComponentModel.Win32Exception (0x80004005): No such interface supported
   at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at Microsoft.Crm.Watson.ReportManager.Upload(GenericReport report, Int32 milliseconds)
   at Microsoft.Crm.Watson.ExceptionManager.ReportExceptionInternal(Exception exception, String assemblyName, String format, Object[] args)
Exception, tried to be reported: System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureDefaultEmailSettings()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureEmailControls()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigurePage()
   at Microsoft.Crm.Application.Controls.AppUIPage.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.HandleError(Exception e)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest()
   at System.Web.UI.Page.ProcessRequest(HttpContext context)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()

 

 at ExceptionConverter.ConvertMessageAndErrorCode(Exception exception, Int32& errorCode)  ilOffset = 0x23B
 at ExceptionConverter.ToSingleFaultOther(Exception exception)  ilOffset = 0x2B
 at ExceptionConverter.ToSingleFaultUnTyped(Exception exception)  ilOffset = 0x3A
 at ExceptionConverter.ConvertToFault(Exception exception)  ilOffset = 0x57
 at ExceptionConverter.TryConvertToFaultExceptionInternal(Exception exception, Boolean createNewFaultException, FaultException`1& faultException)  ilOffset = 0x6D
 at FaultHelper.ConvertToFault(Exception exception)  ilOffset = 0x0
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, Boolean logError, IOrganizationContext context)  ilOffset = 0x24B
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, IOrganizationContext context)  ilOffset = 0x5
 at MainApplication.Application_Error(Object sender, EventArgs eventArguments)  ilOffset = 0x81
 at EventHandler.Invoke(Object sender, EventArgs e)  ilOffset = 0xFFFFFFFF
 at HttpApplication.RaiseOnError()  ilOffset = 0x26
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x85
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
System.Web.HttpUnhandledException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #2B2EE860: System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureDefaultEmailSettings()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureEmailControls()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigurePage()
   at Microsoft.Crm.Application.Controls.AppUIPage.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.HandleError(Exception e)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest()
   at System.Web.UI.Page.ProcessRequest(HttpContext context)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

 

 at ExceptionConverter.ConvertMessageAndErrorCode(Exception exception, Int32& errorCode)  ilOffset = 0x23B
 at ExceptionConverter.ToSingleFaultOther(Exception exception)  ilOffset = 0x2B
 at ExceptionConverter.ToSingleFaultUnTyped(Exception exception)  ilOffset = 0x3A
 at ExceptionConverter.ConvertToFault(Exception exception)  ilOffset = 0x69
 at ExceptionConverter.TryConvertToFaultExceptionInternal(Exception exception, Boolean createNewFaultException, FaultException`1& faultException)  ilOffset = 0x6D
 at FaultHelper.ConvertToFault(Exception exception)  ilOffset = 0x0
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, Boolean logError, IOrganizationContext context)  ilOffset = 0x24B
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, IOrganizationContext context)  ilOffset = 0x5
 at MainApplication.Application_Error(Object sender, EventArgs eventArguments)  ilOffset = 0x81
 at EventHandler.Invoke(Object sender, EventArgs e)  ilOffset = 0xFFFFFFFF
 at HttpApplication.RaiseOnError()  ilOffset = 0x26
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x85
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
System.FormatException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #5A9A0F2F: System.FormatException: Input string was not in a correct format.
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureDefaultEmailSettings()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureEmailControls()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigurePage()
   at Microsoft.Crm.Application.Controls.AppUIPage.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

 

at ErrorInformation.LogError()  ilOffset = 0x17
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, Boolean logError, IOrganizationContext context)  ilOffset = 0x1F5
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, IOrganizationContext context)  ilOffset = 0x5
 at MainApplication.Application_Error(Object sender, EventArgs eventArguments)  ilOffset = 0x81
 at EventHandler.Invoke(Object sender, EventArgs e)  ilOffset = 0xFFFFFFFF
 at HttpApplication.RaiseOnError()  ilOffset = 0x26
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x85
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
MSCRM Error Report:
--------------------------------------------------------------------------------------------------------
Error: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Error Message: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Error Details: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Source File: Not available
Line Number: Not available
Request URL: https://descartes2015.hscrm.net/tools/systemsettings/dialogs/systemsettings.aspx
Stack Trace Info: [FormatException: Input string was not in a correct format.]
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureDefaultEmailSettings()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureEmailControls()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigurePage()
   at Microsoft.Crm.Application.Controls.AppUIPage.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
[HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown.]   at System.Web.UI.Page.HandleError(Exception e)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest()
   at System.Web.UI.Page.ProcessRequest(HttpContext context)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

 

 

 at ErrorInformation.LogError()  ilOffset = 0x17
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, Boolean logError, IOrganizationContext context)  ilOffset = 0x1F5
 at ErrorInformation..ctor(Exception exception, Uri requestUrl, IOrganizationContext context)  ilOffset = 0x5
 at MainApplication.Application_Error(Object sender, EventArgs eventArguments)  ilOffset = 0x81
 at EventHandler.Invoke(Object sender, EventArgs e)  ilOffset = 0xFFFFFFFF
 at HttpApplication.RaiseOnError()  ilOffset = 0x26
 at ApplicationStepManager.ResumeSteps(Exception error)  ilOffset = 0x85
 at HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)  ilOffset = 0x5C
 at HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)  ilOffset = 0x16A
 at ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)  ilOffset = 0x4B
MSCRM Error Report:
--------------------------------------------------------------------------------------------------------
Error: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Error Message: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Error Details: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Source File: Not available
Line Number: Not available
Request URL: https://descartes2015.hscrm.net/tools/systemsettings/dialogs/systemsettings.aspx
Stack Trace Info: [FormatException: Input string was not in a correct format.]
   at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
   at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureDefaultEmailSettings()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigureEmailControls()
   at Microsoft.Crm.Web.Tools.SystemSettings.SystemSettingsPage.ConfigurePage()
   at Microsoft.Crm.Application.Controls.AppUIPage.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
[HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown.]   at System.Web.UI.Page.HandleError(Exception e)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest()
   at System.Web.UI.Page.ProcessRequest(HttpContext context)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)


Error when trying to load an email template

$
0
0

Hello everyone,

I use CRM 2013 on premises, IE 10. When I try to create a new Email activity in the opportunity page and insert one of the existing templates, I get the below error message

"An error has occurred. Please return to the home page and try again."

This used to work fine last week and no changes have been made. There's nothing showing in the error log. The F12 Developers Tools in IE10 shows the below:

Permission denied  JsProvider.ashx?ids=1431707864-1759665639-1968334880-202661451-1793205875-1376927455-1030632819-1181113682-1547461133-1992083491-1000289424-159335543-1194605645-1039841082-1314140682-513446117-1625018438-1460109179-1088147315-706656670-211421035-335799893-1178302015-342519603-542820515-1946640899-1603536461-468302605-1405388298-1220618931-511599809-1264077421-1188909594-783705869-374257838-280177609-493509602-1787531955-1902957356-2050812538-512064351&ver=-1608558855, line 44 character 18335

Can anyone please advise what could be the reason for this error?

Thank you

 

 

CRM2011 and SharePoint Online Integration

$
0
0

Hi there,

I try to connect our SharePoint Online to an on premise installation of CRM2011. I want to use external data in SharePoint and I try to connect to the WebService URL of CRM2011 (https://xxx/XrmServices/2011/Discovery.svc?wsdl). But after while of waiting I always get the error: 

Has anybody an idea what is going wrong? Or is there a different way (without code development)?

John

Get Current User data to put in Salesperson in Quote Form

$
0
0

Hi, this is probably a simple answer but can't get my head quite around it

In quote product I want to be able to put the current person as the salesperson.

So far I have the following;

function retrieveDefaultSales()
{
  var check = Xrm.Page.getAttribute("salesrepid").getValue();
  if (check == null)
  {
    var salesid = Xrm.Page.context.getUserId();
    var option = "$select=DomainName&$filter=SystemUserId eq guid'" + salesid  + "'";
    SDK.REST.retrieveMultipleRecords("SystemUser", option, retrieveUser, function(error) { alert(error.message); }, function(){});
    Xrm.Page.getAttribute("salesrepid").setValue(salesid);
  }
}

function retrieveUser(retirevedUser)
{
  if(retirevedUser.length > 0)
  {
    var salesperson = retirevedUser[0].DomainName;
    alert(salesperson);
    Xrm.Page.getAttribute("salesrepid").setValue(salesperson);
  }
}


Any ideas how to get this actually working? I don't seem to have any error messages coming up it simply isn't populating the lookup field

Advanced Finds -

$
0
0

Hi,

I have segmented 'contact' data and I have been able to create Advanced Finds for Addresses, Personal information and telephone numbers.

How can I do it with educational information or employment information?

Thanks

Shireen

Import SubGrid Data

$
0
0

Hey guys!

I want to import information to my subgrid, I will explain you my situation.

I have one entities called "Club" and the other one is "Users".

In the entitie "Club", I have a SubGrid with multiple users in it.

In the entitie "Users", I have the a SubGrid with multiple club in it. (Actually, the same that is chosen in the entitie "Club")

I would like to know how do I import my User or my Club, so I can specify which Club or User I want to link it with?

In general, Club and have multiple Users, and Users can have multiple clubs.

There is no field in the "Import File" where I can specify the club or user I want to join it with.

Thanks for any help!

Viewing all 82002 articles
Browse latest View live


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