{"id":1495,"date":"2015-07-24T14:53:09","date_gmt":"2015-07-24T09:23:09","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=1495"},"modified":"2026-02-05T15:38:14","modified_gmt":"2026-02-05T10:08:14","slug":"support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/","title":{"rendered":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1"},"content":{"rendered":"<h2><strong>Introduction:<\/strong><\/h2>\n<p>Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different.<\/p>\n<p>One of such feature is opening a record in a new window.<\/p>\n<p>While most of you`ll think, what`s so great in this, we have been doing this since CRM 2011, or maybe even before that.<\/p>\n<p>Well here the difference is, now this is available through CRM API.<\/p>\n<p>Before finding out how to achieve this, let`s run down the memory lane, let`s start with CRM 2011 and understand how this functionality have evolved with every update from CRM 2011 to CRM 2015 SP1.<\/p>\n<p><strong>CRM 2011:<\/strong><\/p>\n<p>How do we used to open an entity record or simple, a record during CRM 2011 era?<\/p>\n<p>We used to use the JavaScript functionality of window.open() to open up a record.<\/p>\n<p>Syntax:<\/p>\n<p><strong>window.open(URL, name)<\/strong><\/p>\n<p><strong>URL <\/strong>&#8211; server name + URL of the record<\/p>\n<p><strong>name<\/strong> &#8211; specifies where to open the window, i.e., on the same page or a new tab or a new window.<\/p>\n<p><strong>CRM 2013:<\/strong><\/p>\n<p>Now, comes the CRM 2013, complete overhauled design, with added features for developer.<\/p>\n<p>It further simplified the way of opening a record, by providing us a parameterized function. This also ensured that it works across devices.<\/p>\n<p>Syntax:<\/p>\n<p><strong>Xrm.Utility.openEntityForm(name, id, parameters)<\/strong><\/p>\n<p><strong>name<\/strong> &#8211; Name of the entity, whose record we want to open.<\/p>\n<p><strong>id<\/strong> &#8211; GUID of the record to be opened, if passed null, it opens an empty record form.<\/p>\n<p><strong>parameters<\/strong> &#8211; parameters to be used on the form.<\/p>\n<p>Though it simplified the process of opening a record by eliminating the need to create the URL, still it lacked in one component i.e., giving us the choice whether to open a record on the same page or in a new window.<\/p>\n<p>Remember since CRM 2013, all navigation in CRM is in-place i.e it replaces the current page with the new URL that is requested.<\/p>\n<p>Using the above piece of code to open a record, would very well open the record, but it would open on the same page itself, which was kind of annoying.<\/p>\n<p>What if we want to open a record in a new window then? Well, we have to use the same conventional method i.e., window.open(). As a result this functionality could be achieved but not supported across devices.<\/p>\n<p><strong>CRM 2015 SP1:<\/strong><\/p>\n<p>Then, came CRM 2015 SP1 update, in this update the openEntityForm method has been enhanced further<\/p>\n<p>It means the method is allowed to take in one more parameter, which on specifying defines where the record would open<\/p>\n<p>Syntax:<\/p>\n<p><strong>Xrm.Utility.openEntityForm(name, id, parameters, options)<\/strong><\/p>\n<p><strong>options &#8211; <\/strong>It`s optional. <strong>\u00a0<\/strong>It takes in an object in which we have to specify true or false, true means open in a new window and false means to open on the same page. If this parameter is not specified it defaults to false.<\/p>\n<p><strong>How to use this functionality?<\/strong><\/p>\n<p>First of all create an Object.<\/p>\n<p>var options = {<\/p>\n<p>openInNewWindow : true<\/p>\n<p>};<\/p>\n<p><strong><em>Note: <\/em><\/strong><em>the property openInNewWindow cannot be replaced by any another name.<\/em><\/p>\n<p>Xrm.Utility.openEntityForm(&#8220;account&#8221;, null, null, options)<\/p>\n<p>The object just takes only one property currently, we cannot specify the height or width of the window to be opened. It by defaults take up the entire screen.<\/p>\n<p><strong>Conclusion:<\/strong><\/p>\n<ul>\n<li>Now, the records can be open in a new window.<\/li>\n<li>Currently, we cannot define the size of the window to be opened.<\/li>\n<\/ul>\n<p>Have a look at our mapping solution for Dynamics CRM,\u00a0<a href=\"https:\/\/www.maplytics.com\/\">Maplytics<\/a>\u00a0which works from with CRM. Email us on\u00a0<a href=\"mailto:crm@inogic.com\">crm@inogic.com<\/a>\u00a0for a trial or if you would like to see a live demo.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/\">Read More: Support to open an Entity form in a new Window\u2026 &raquo;<\/a><\/span><\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22,23,24,25,33],"tags":[398,597,598],"class_list":["post-1495","post","type-post","status-publish","format-standard","hentry","category-dynamics-crm-2015","category-dynamics-crm-2015-update-1","category-dynamics-crm-2016","category-dynamics-crm-2016-update-1","category-javascript","tag-crm-2015","tag-dynamics-crm-2015","tag-dynamics-crm-2015-sp1"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Inogic\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-24T09:23:09+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-05T10:08:14+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inogicindia\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Inogic\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#blogposting\",\"name\":\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1\",\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#articleImage\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"datePublished\":\"2015-07-24T14:53:09+05:30\",\"dateModified\":\"2026-02-05T15:38:14+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#webpage\"},\"articleSection\":\"Dynamics CRM 2015, Dynamics CRM 2015 Update 1, Dynamics CRM 2016, Dynamics CRM 2016 Update 1, JavaScript, CRM 2015, Dynamics CRM 2015, Dynamics CRM 2015 SP1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"name\":\"Dynamics CRM\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"position\":2,\"name\":\"Dynamics CRM\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/#listItem\",\"name\":\"Dynamics CRM 2015\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/#listItem\",\"position\":3,\"name\":\"Dynamics CRM 2015\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/dynamics-crm-2015-update-1\\\/#listItem\",\"name\":\"Dynamics CRM 2015 Update 1\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"name\":\"Dynamics CRM\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/dynamics-crm-2015-update-1\\\/#listItem\",\"position\":4,\"name\":\"Dynamics CRM 2015 Update 1\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/dynamics-crm-2015-update-1\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#listItem\",\"name\":\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/#listItem\",\"name\":\"Dynamics CRM 2015\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#listItem\",\"position\":5,\"name\":\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2015\\\/dynamics-crm-2015-update-1\\\/#listItem\",\"name\":\"Dynamics CRM 2015 Update 1\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"By Inogic\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inogicindia\",\"https:\\\/\\\/twitter.com\\\/inogic\",\"https:\\\/\\\/www.instagram.com\\\/inogicindia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCM4V7ousgLSu1hbOEv4DUuQ\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inogicindia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/\",\"name\":\"Inogic\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Inogic\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/\",\"name\":\"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2015\\\/07\\\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"datePublished\":\"2015-07-24T14:53:09+05:30\",\"dateModified\":\"2026-02-05T15:38:14+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"alternateName\":\"Inogic\",\"description\":\"By Inogic\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM","canonical_url":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#blogposting","name":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1","author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/#articleImage","width":1000,"height":325,"caption":"inogic logo"},"datePublished":"2015-07-24T14:53:09+05:30","dateModified":"2026-02-05T15:38:14+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#webpage"},"articleSection":"Dynamics CRM 2015, Dynamics CRM 2015 Update 1, Dynamics CRM 2016, Dynamics CRM 2016 Update 1, JavaScript, CRM 2015, Dynamics CRM 2015, Dynamics CRM 2015 SP1"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.inogic.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","name":"Dynamics CRM"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","position":2,"name":"Dynamics CRM","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/#listItem","name":"Dynamics CRM 2015"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/#listItem","position":3,"name":"Dynamics CRM 2015","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/#listItem","name":"Dynamics CRM 2015 Update 1"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","name":"Dynamics CRM"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/#listItem","position":4,"name":"Dynamics CRM 2015 Update 1","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#listItem","name":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/#listItem","name":"Dynamics CRM 2015"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#listItem","position":5,"name":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/#listItem","name":"Dynamics CRM 2015 Update 1"}}]},{"@type":"Organization","@id":"https:\/\/www.inogic.com\/blog\/#organization","name":"Microsoft Dynamics 365 CRM Tips and Tricks","description":"By Inogic","url":"https:\/\/www.inogic.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/inogicindia","https:\/\/twitter.com\/inogic","https:\/\/www.instagram.com\/inogicindia\/","https:\/\/www.youtube.com\/channel\/UCM4V7ousgLSu1hbOEv4DUuQ","https:\/\/www.linkedin.com\/company\/inogicindia"]},{"@type":"Person","@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author","url":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/","name":"Inogic","image":{"@type":"ImageObject","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g","width":96,"height":96,"caption":"Inogic"}},{"@type":"WebPage","@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/","name":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"datePublished":"2015-07-24T14:53:09+05:30","dateModified":"2026-02-05T15:38:14+05:30"},{"@type":"WebSite","@id":"https:\/\/www.inogic.com\/blog\/#website","url":"https:\/\/www.inogic.com\/blog\/","name":"Microsoft Dynamics 365 CRM Tips and Tricks","alternateName":"Inogic","description":"By Inogic","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic","og:type":"article","og:title":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM","og:url":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/","article:published_time":"2015-07-24T09:23:09+00:00","article:modified_time":"2026-02-05T10:08:14+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1 - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"Introduction: Every CRM update comes with a lot of goodies for both the developers and the end users, so Dynamics CRM 2015 SP1 was not different. One of such feature is opening a record in a new window. While most of you`ll think, what`s so great in this, we have been doing this since CRM","twitter:creator":"@inogic","twitter:label1":"Written by","twitter:data1":"Inogic","twitter:label2":"Est. reading time","twitter:data2":"3 minutes"},"aioseo_meta_data":{"post_id":"1495","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2023-02-02 06:14:50","updated":"2026-02-05 10:23:56","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/\" title=\"Dynamics CRM\">Dynamics CRM<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/\" title=\"Dynamics CRM 2015\">Dynamics CRM 2015<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/\" title=\"Dynamics CRM 2015 Update 1\">Dynamics CRM 2015 Update 1<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSupport to open an Entity form in a new Window in Dynamics CRM 2015 SP1\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.inogic.com\/blog"},{"label":"Dynamics CRM","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/"},{"label":"Dynamics CRM 2015","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/"},{"label":"Dynamics CRM 2015 Update 1","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2015\/dynamics-crm-2015-update-1\/"},{"label":"Support to open an Entity form in a new Window in Dynamics CRM 2015 SP1","link":"https:\/\/www.inogic.com\/blog\/2015\/07\/support-to-open-an-entity-form-in-a-new-window-in-dynamics-crm-2015-sp1\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/1495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/comments?post=1495"}],"version-history":[{"count":0,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/1495\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=1495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=1495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=1495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}