CRM Parameter Filter – Invalid parameter ‘xxxtype=entityName in Request.QueryString on page /main.aspx
Solution
Dont set “type” attribute. For example : parentcustomeridtype.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
var parameters = {}; //Set the Parent Customer field value to “Contoso”. parameters["parentcustomerid"] = "2878282E-94D6-E111-9B1D-00155D9D700B"; parameters["parentcustomeridname"] = "Contoso"; //Dont set ! //parameters["parentcustomeridtype"] = "account"; //Set the Address Type to “Primary”. parameters["address1_addresstypecode"] = "3"; //Set text in the Description field. parameters["description"] = "Default values for this record were set programmatically."; //Set Do not allow E-mails to "Do Not Allow". parameters["donotemail"] = "1"; // Open the window. Xrm.Utility.openEntityForm("contact", null, parameters); |
System.Web.HttpException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #F0561A87: System.Web.HttpException (0x80004005): Error executing child request for /_forms/read/page.aspx. —> System.Web.HttpUnhandledException (0x80004005): Exception of type ‘System.Web.HttpUnhandledException’ was thrown. —> System.InvalidOperationException: CRM Parameter Filter – Invalid parameter ‘new_quoteidtype=quote’ in Request.QueryString on page /main.aspx
The raw request was ‘GET /main.aspx?etc=10044&extraqs=%3fetc%3d10044%26new_quoteid%3d565152A2-25DE-E611-80D4-00155D0D3339%26new_quoteidname%3dBrisa%25202017%2520Bak%25C4%25B1m%2520Destek%2520S%25C3%25B6zle%25C5%259Fmesi%26new_quoteidtype%3dquote&pagemode=iframe&pagetype=entityrecord’ called from https://crm.domian.com/main.aspx.
at Microsoft.Crm.Application.ParameterFilter.ValidateParameter(HttpRequest request, ArrayList parameterCollection, String key, String value, ParameterSources source, EntityType pageEntityType, FormAdditionalAllowedParameters additionalAllowedParameters)
at Microsoft.Crm.Application.ParameterFilter.ValidateParameters(Page page, EntityType pageEntityType, Boolean alwaysEnableParameterChecking, FormAdditionalAllowedParameters formAdditionalAllowedParametersTemp)
at Microsoft.Crm.Application.Controls.AppPage.ValidatePageParameters()
at Microsoft.Crm.Application.Controls.AppPage.OnInit(EventArgs e)
at System.Web.UI.Control.InitRecursive(Control namingContainer)
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.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride)
at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride)
at System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean preserveForm)
at System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm)
at System.Web.HttpServerUtility.Transfer(String path)
at System.Web.UI.Control.PreRenderRecursiveInternal()
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)
https://msdn.microsoft.com/en-us/library/gg334375.aspx