{"id":3802,"date":"2016-11-02T19:28:12","date_gmt":"2016-11-02T13:58:12","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=3802"},"modified":"2016-11-02T19:28:12","modified_gmt":"2016-11-02T13:58:12","slug":"found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/","title":{"rendered":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved"},"content":{"rendered":"<p><strong>Introduction:<\/strong><\/p>\n<p>Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this <a href=\"https:\/\/www.inogic.com\/blog\/2016\/06\/commencement-of-customer-type-field-in-dynamics-crm-2016-update-1\" target=\"_blank\" rel=\"noopener noreferrer\">blog<\/a> to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field.<\/p>\n<p><strong>Problem:<\/strong><\/p>\n<p>In one of our examples, our requirement was to read the metadata of entity. For this, we tried to retrieve entity metadata using RetrieveEntityRequest.<\/p>\n<p>Following is the code snippet:<\/p>\n<pre class=\"lang:default decode:true\">\/\/Retreive the entity request\n                RetrieveEntityRequest attreq = new RetrieveEntityRequest();\n                \/\/retrieve all data for an entity\n                attreq.EntityFilters = EntityFilters.All;\n                \/\/set the custom entity logical Name\n                attreq.LogicalName = \"new_employee\";\n                \/\/Set this value to true to include unpublished changes, as it would look if you called publish\n                attreq.RetrieveAsIfPublished = true;\n                \/\/Response the request RetreiveEntityRequest\n                RetrieveEntityResponse attResponse = (RetrieveEntityResponse)_service.Execute(attreq);\n<\/pre>\n<p>While execution, it was\u00a0throwing the error \u201cFound an integer attribute with unrecognized format: new_customeridtype\u201d.<\/p>\n<p><strong>Cause:<\/strong><\/p>\n<p>RetrieveAsIfPublished = &#8220;True&#8221; means return the metadata(Entity, Attributes, Relationship, Optionset, option) including unpublished changes.<\/p>\n<p>RetrieveAsIfPublished = \u201cFalse\u201d means return only the currently published Metadata, ignoring any unpublished changes.<\/p>\n<p>In order to overcome with this issue, we set entity request \u201cRetreiveAsIfPublished\u201d property to false.<\/p>\n<p><strong>Solution:<\/strong><\/p>\n<p>So we used the revised code as below:<\/p>\n<pre class=\"lang:default decode:true \">\/\/Retreive the entity request\n                RetrieveEntityRequest attreq = new RetrieveEntityRequest();\n                \/\/retrieve all data for an entity\n                attreq.EntityFilters = EntityFilters.All;\n                \/\/set the custom entity logical Name\n                attreq.LogicalName = \"new_employee\";\n                \/\/Set RetrieveAsIfPublished value to false ignoring the unpublished changes\n                attreq.RetrieveAsIfPublished = false;\n                \/\/Response the request RetreiveEntityRequest\n                RetrieveEntityResponse attResponse = (RetrieveEntityResponse)_service.Execute(attreq);\n<\/pre>\n<p>And, we were able to get the results without any error.<\/p>\n<p>Hope this helps you.<\/p>\n<p>Get hands on experience\u00a0of<a href=\"http:\/\/www.inogic.com\/product\/integrations\/maplytics-bing-map-microsoft-dynamics-crm\" target=\"_blank\" rel=\"noopener noreferrer\">\u00a0Maplytics \u2013 Dynamics CRM + Maps<\/a>\u00a0and navigate with style!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/\">Read More: Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved &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":[15,16,19,24],"tags":[619,833,1471,1472],"class_list":["post-3802","post","type-post","status-publish","format-standard","hentry","category-development","category-dynamics-365","category-dynamics-crm","category-dynamics-crm-2016","tag-dynamics-crm-customer-field-error","tag-found-an-integer-attribute-with-unrecognized-format-error","tag-retrieveentityrequest-error-in-customer-field","tag-retrieveentityrequest-error-in-dynamics-crm-2016-customer-field"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was\" \/>\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\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/\" \/>\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=\"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-11-02T13:58:12+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-11-02T13:58:12+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=\"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was\" \/>\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=\"1 minute\" \/>\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\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#blogposting\",\"name\":\"Found an integer attribute with unrecognized format: new_customeridtype \\u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"Found an integer attribute with unrecognized format: new_customeridtype \\u2013 Solved\",\"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\":\"2016-11-02T19:28:12+05:30\",\"dateModified\":\"2016-11-02T19:28:12+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#webpage\"},\"articleSection\":\"Development, Dynamics 365, Dynamics CRM, Dynamics CRM 2016, Dynamics CRM Customer Field error, Found an integer attribute with unrecognized format error, RetrieveEntityRequest Error in Customer Field, RetrieveEntityRequest Error in Dynamics CRM 2016 Customer Field\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#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-2016\\\/#listItem\",\"name\":\"Dynamics CRM 2016\"},\"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-2016\\\/#listItem\",\"position\":3,\"name\":\"Dynamics CRM 2016\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2016\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#listItem\",\"name\":\"Found an integer attribute with unrecognized format: new_customeridtype \\u2013 Solved\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/#listItem\",\"name\":\"Dynamics CRM\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#listItem\",\"position\":4,\"name\":\"Found an integer attribute with unrecognized format: new_customeridtype \\u2013 Solved\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/dynamics-crm\\\/dynamics-crm-2016\\\/#listItem\",\"name\":\"Dynamics CRM 2016\"}}]},{\"@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\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#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\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#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\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/\",\"name\":\"Found an integer attribute with unrecognized format: new_customeridtype \\u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2016\\\/11\\\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"datePublished\":\"2016-11-02T19:28:12+05:30\",\"dateModified\":\"2016-11-02T19:28:12+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":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was","canonical_url":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#blogposting","name":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved","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":"2016-11-02T19:28:12+05:30","dateModified":"2016-11-02T19:28:12+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#webpage"},"articleSection":"Development, Dynamics 365, Dynamics CRM, Dynamics CRM 2016, Dynamics CRM Customer Field error, Found an integer attribute with unrecognized format error, RetrieveEntityRequest Error in Customer Field, RetrieveEntityRequest Error in Dynamics CRM 2016 Customer Field"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#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-2016\/#listItem","name":"Dynamics CRM 2016"},"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-2016\/#listItem","position":3,"name":"Dynamics CRM 2016","item":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2016\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#listItem","name":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/#listItem","name":"Dynamics CRM"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#listItem","position":4,"name":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2016\/#listItem","name":"Dynamics CRM 2016"}}]},{"@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\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#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\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#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\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/","name":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"datePublished":"2016-11-02T19:28:12+05:30","dateModified":"2016-11-02T19:28:12+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":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was","og:url":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/","article:published_time":"2016-11-02T13:58:12+00:00","article:modified_time":"2016-11-02T13:58:12+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"Introduction: Microsoft introduced the customer type field in Dynamics CRM 2016. To know more about it, you can refer this blog to explore it more. In this blog, we will focus on one of the error, which is caused while retrieving entity metadata for customer field. Problem: In one of our examples, our requirement was","twitter:creator":"@inogic","twitter:label1":"Written by","twitter:data1":"Inogic","twitter:label2":"Est. reading time","twitter:data2":"1 minute"},"aioseo_meta_data":{"post_id":"3802","title":null,"description":null,"keywords":null,"keyphrases":null,"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":null,"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":"","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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-02-02 06:33:46","updated":"2025-07-04 02:15:02","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-2016\/\" title=\"Dynamics CRM 2016\">Dynamics CRM 2016<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFound an integer attribute with unrecognized format: new_customeridtype \u2013 Solved\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 2016","link":"https:\/\/www.inogic.com\/blog\/category\/dynamics-crm\/dynamics-crm-2016\/"},{"label":"Found an integer attribute with unrecognized format: new_customeridtype \u2013 Solved","link":"https:\/\/www.inogic.com\/blog\/2016\/11\/found-an-integer-attribute-with-unrecognized-format-new_customeridtype-solved\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/3802","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=3802"}],"version-history":[{"count":0,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/3802\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=3802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=3802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=3802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}