{"id":14315,"date":"2021-04-29T10:00:00","date_gmt":"2021-04-29T17:00:00","guid":{"rendered":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/"},"modified":"2025-06-11T07:54:30","modified_gmt":"2025-06-11T14:54:30","slug":"how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/","title":{"rendered":"How to Run a Manufacturing Facility Using the One Microsoft Cloud"},"content":{"rendered":"<p><em>Thank you to <a href=\"https:\/\/twitter.com\/aprildunnam\">April Dunnam<\/a>, <a href=\"https:\/\/twitter.com\/98codes\">Greg Hurlman<\/a>, and <a href=\"https:\/\/twitter.com\/CodeMillMatt\">Matt Soucoup<\/a>\u00a0for their contributions to this post, <a href=\"https:\/\/aka.ms\/fusiondevpath\">Microsoft Learn Path<\/a> and <a href=\"https:\/\/aka.ms\/fusiondevbook\">eBook<\/a>.<br \/>\n<\/em><\/p>\n<h2>Scenario<\/h2>\n<p>There is a factory that makes boxes. A key activity is cutting large sheets of cardboard into the standard sizes needed to make these boxes. The factory has several lathes doing this cutting work across several factories around the world. The company partners with a set of vendors to provide replacement blades and service the lathes when they need repair or replacement.<\/p>\n<p>Everybody in the factory, from the tech team to the floor workers, collaborates and communicates using Microsoft Teams. The team also tracks the productivity of the cutting lathes using Power BI. The Power BI report shows production outputs from the last 24 hours \u2013 monitoring both good and reject boxes across the company and for each factory location.<\/p>\n<h2>A Standard Manufacturing Challenge<\/h2>\n<p>One day, the Chief Operations Officer notices a high number of rejects on one of the lathes. He assigns a work item to the Factory Floor Manager to investigate. The Floor Manager checks the machine and realizes the lathe will need to be serviced soon.<\/p>\n<h2>A New Kind of Solution<\/h2>\n<p>Rather than calling all the vendors the factory contracts with to gather quotes and schedule service, then manually keep track whether a lathe has been scheduled for service or not, and the service history the Floor Manager wonders if there\u2019s a better way.<\/p>\n<p>The Floor Manager sits down with the tech team and tells them her predicament:<\/p>\n<p>Every time the Chief Operations Manager notices an issue with a lathe, he asks her to investigate. This could mean checking on the lathe directly or contacting a colleague via Teams to do it. Depending on the findings, she may end up calling many different vendors to schedule repairs for the lathe. She also must keep a log of the lathe repair service history. And coordinate with Floor Managers from factories around the world who do the same thing.<\/p>\n<p>With all the hand-written work this process has introduced errors before.<\/p>\n<p>The Floor Manager, and her counterparts in the other factories around the world, have an idea of what the application should look and act like to best fit into their day-to-day workflow.<\/p>\n<p>The tech team tells the Floor Manager they can create a web API that interfaces with various vendor systems to schedule service. And APIs to record all service history and mark whether a lathe is currently in production or not.<\/p>\n<p>Using that info, the Floor Manager knows she can create an app using Power Apps that will reside in the existing Power BI dashboard. That app will do exactly what she wants, and it will work exactly to her specific workflow \u2013 because she designed and created it for her exact needs.<\/p>\n<p>This Fusion Development Team of high-code, or professional developers and low-code, or citizen developers get down to work.<\/p>\n<h2>High-Code \/ ProDev Architecture<\/h2>\n<p>The high-code or professional developer team will create a web API that performs the following actions:<\/p>\n<ul>\n<li>List all the company\u2019s factories worldwide.<\/li>\n<li>List all the lathes at a single factory.<\/li>\n<li>List all the lathes of a particular type at a single factory.<\/li>\n<li>List all the vendors contracted to perform repairs.<\/li>\n<li>Schedule a repair for a lathe with a vendor.<\/li>\n<li>List repair history for an individual lathe.<\/li>\n<li>Mark an individual lathe as being out-of-service or in-service.<\/li>\n<\/ul>\n<p>The tech team has decided the following cloud infrastructure will best suit their needs:<\/p>\n<p><a href=\"https:\/\/dotnet.microsoft.com\/apps\/aspnet\/apis\">ASP.NET Core Web API<\/a> to serve as a REST service for the actions listed above.<\/p>\n<ul>\n<li>Azure Cosmos DB<\/li>\n<li>Azure App Service<\/li>\n<li>Azure API Management<\/li>\n<li>A Custom Connector that facilitates communication between Azure API Management and Power Apps.<\/li>\n<\/ul>\n<p>The team decided on ASP.NET Core because of the flexibility it gives them to build applications quickly using Visual Studio, .NET, and the entire .NET ecosystem. Including robustly documenting the APIs with OpenAPI, making it easier for downstream developers to use the app.<\/p>\n<p><a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/cosmos-db\/\">Azure Cosmos DB<\/a> is a robust, globally scalable NoSQL database \u2013 perfect for the team\u2019s needs to store lathe machine information from across the globe. And there\u2019s a .NET SDK available so the ASP.NET Core web API can integrate smoothly with it.<\/p>\n<p>Instead of hosting the <a href=\"https:\/\/dotnet.microsoft.com\/apps\/aspnet\/apis\">ASP.NET Core web API<\/a> locally, the team has decided to use Azure App Service. This gives them the ability to scale the app on demand, use the latest security technologies, and have enterprise-grade performance all without having to worry about infrastructure.<\/p>\n<p>The team uses Azure API Management to bring their web API to the next level. It provides tools to monitor, secure, and most importantly share their APIs.<\/p>\n<p><a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/api-management\/\">Azure API Management<\/a> uses the ASP.NET Core web API deployed in Azure App Service and presents a public interface for all API requests.<\/p>\n<p>And the Custom Connector is the way in which the tech team will share their ASP.NET Core web API with the citizen developers and Power Apps.<\/p>\n<p>The Custom Connector is made by exporting an OpenAPI v2 (v3 not ready yet) document from Azure API Management and then importing it with the Power Apps tooling. Once done, the API is ready to use within Power Apps.<\/p>\n<h2>Low-Code \/ Citizen Dev Architecture<\/h2>\n<p>The low-code or citizen developer team will create an app with Power Apps that performs the following actions:<\/p>\n<ul>\n<li>Groups the machine data into locations for navigation.<\/li>\n<li>Allows the user to choose a particular machine and see that machine\u2019s data.<\/li>\n<li>Lists the service order history for a machine.<\/li>\n<li>Allows the user to create a new service order from the machine detail screen.<\/li>\n<li>Allows the user to choose a vendor for the new service order from all the vendors contracted to perform repairs.<\/li>\n<\/ul>\n<p>The team has decided the following data integrations and connections will best suit their needs:<\/p>\n<ul>\n<li>Gets all the initial data the app needs directly from the Power BI integration.<\/li>\n<li>Uses the custom connector to get the approved vendor list.<\/li>\n<li>Uses the custom connector to get service order history and create new service orders.<\/li>\n<\/ul>\n<p>The team decided to use the built-in Power BI integration to prevent having to call the custom connector for data already loaded into the Power BI report, and doing so will allow the Power Apps app to actively filter the data it shows when the report user filters the page\u2014for example, by clicking on another Power BI visualization.<\/p>\n<p>The custom connector makes it easy to work with the internal systems, as it works just like the standard connectors. The team makes a few simple changes to the custom connector\u2019s action names, so that they are more user friendly and present themselves with the same look and feel as the standard connectors.<\/p>\n<h2>Resources<\/h2>\n<p><strong>Demo Video<br \/>\n<\/strong>The following video shows this scenario using Microsoft Teams with an embedded Power App using the custom connector to extend its capability.<\/p>\n<p><iframe loading=\"lazy\" title=\"Manufacturing Demo - Power Apps, .NET, Power BI and Microsoft Teams\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube-nocookie.com\/embed\/cHBnAb-Gcso?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n<p><a href=\"https:\/\/aka.ms\/fusion-dev-path\"><strong>Microsoft Learn Path<\/strong><\/a><br \/>\nLearn how your software development skills apply in a low-code environment and how you can empower citizen developers using Power Apps, web APIs, and Azure API Management. (<a href=\"https:\/\/aka.ms\/fusiondevpath\">aka.ms\/fusiondevpath<\/a>)<\/p>\n<p><a href=\"https:\/\/aka.ms\/fusiondevbook\"><strong>FREE eBook<\/strong>\u00a0<\/a><br \/>\n<a href=\"https:\/\/aka.ms\/fusiondevbook\">The Fusion Development Approach to Building Power Apps<\/a>\u00a0 (<a href=\"https:\/\/aka.ms\/fusiondevbook\">aka.ms\/fusiondevbook<\/a>)<br \/>\n<a href=\"https:\/\/aka.ms\/fusiondevbook\"><img loading=\"lazy\" decoding=\"async\" alt=\"\" class=\"alignnone wp-image-14338 size-full\" height=\"792\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/fusion-power-apps-ebook-monitor.png\" width=\"612\" srcset=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/fusion-power-apps-ebook-monitor.webp 612w, https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/fusion-power-apps-ebook-monitor-232x300.webp 232w\" sizes=\"auto, (max-width: 612px) 100vw, 612px\" \/><\/a><\/p>\n<p>\u00a0<\/p>\n<div class=\"ms-editor-squiggler\" style=\"color: initial; font: initial; background: initial; border: initial; border-collapse: initial; caption-side: initial; clear: initial; cursor: initial; float: initial; height: 0px; letter-spacing: initial; margin: initial; max-height: initial; max-width: initial; min-height: initial; min-width: initial; overflow: initial; padding: initial; text-align: initial; text-decoration: initial; text-indent: initial; vertical-align: initial; border-spacing: initial; width: initial;\"><\/div>\n<div class=\"ms-editor-squiggler\" style=\"color: initial; font: initial; background: initial; border: initial; border-collapse: initial; caption-side: initial; clear: initial; cursor: initial; float: initial; height: 0px; letter-spacing: initial; margin: initial; max-height: initial; max-width: initial; min-height: initial; min-width: initial; overflow: initial; padding: initial; text-align: initial; text-decoration: initial; text-indent: initial; vertical-align: initial; border-spacing: initial; width: initial;\"><\/div>\n<div class=\"ms-editor-squiggler\" style=\"color: initial; font: initial; background: initial; border: initial; border-collapse: initial; caption-side: initial; clear: initial; cursor: initial; float: initial; height: 0px; letter-spacing: initial; margin: initial; max-height: initial; max-width: initial; min-height: initial; min-width: initial; overflow: initial; padding: initial; text-align: initial; text-decoration: initial; text-indent: initial; vertical-align: initial; border-spacing: initial; width: initial;\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>A manufacturing plant using Microsoft Power Platform to solve machine monitoring and servicing.<\/p>\n","protected":false},"author":237,"featured_media":14318,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","ms-ems-related-posts":[],"footnotes":""},"audience":[3378],"content-type":[3423],"job-role":[],"product":[3473],"property":[],"topic":[3421],"coauthors":[2208],"class_list":["post-14315","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","audience-it-professional","content-type-tips-and-guides","product-power-apps","topic-application-modernization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog\" \/>\n<meta property=\"og:description\" content=\"A manufacturing plant using Microsoft Power Platform to solve machine monitoring and servicing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Power Platform Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-29T17:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T14:54:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"886\" \/>\n\t<meta property=\"og:image:height\" content=\"505\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shayne Boyer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shayne Boyer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/shayne-boyer\/\",\"@type\":\"Person\",\"@name\":\"Shayne Boyer\"}],\"headline\":\"How to Run a Manufacturing Facility Using the One Microsoft Cloud\",\"datePublished\":\"2021-04-29T17:00:00+00:00\",\"dateModified\":\"2025-06-11T14:54:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\"},\"wordCount\":1205,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp\",\"keywords\":[\"Code first\",\"Dataverse\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\",\"name\":\"How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp\",\"datePublished\":\"2021-04-29T17:00:00+00:00\",\"dateModified\":\"2025-06-11T14:54:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp\",\"width\":886,\"height\":505,\"caption\":\"graphical user interface\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Run a Manufacturing Facility Using the One Microsoft Cloud\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"name\":\"Microsoft Power Platform Blog\",\"description\":\"Innovate with Business Apps\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\",\"name\":\"Microsoft Power Platform Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"width\":194,\"height\":145,\"caption\":\"Microsoft Power Platform Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/760340e94549da0defd21d0c8a850224\",\"name\":\"Shayne Boyer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g01e8eb2c5b4d72737f473858c5c823c3\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g\",\"caption\":\"Shayne Boyer\"},\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/shboyer\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/","og_locale":"en_US","og_type":"article","og_title":"How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog","og_description":"A manufacturing plant using Microsoft Power Platform to solve machine monitoring and servicing.","og_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-apps\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/","og_site_name":"Microsoft Power Platform Blog","article_published_time":"2021-04-29T17:00:00+00:00","article_modified_time":"2025-06-11T14:54:30+00:00","og_image":[{"width":886,"height":505,"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.png","type":"image\/png"}],"author":"Shayne Boyer","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shayne Boyer","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/shayne-boyer\/","@type":"Person","@name":"Shayne Boyer"}],"headline":"How to Run a Manufacturing Facility Using the One Microsoft Cloud","datePublished":"2021-04-29T17:00:00+00:00","dateModified":"2025-06-11T14:54:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/"},"wordCount":1205,"commentCount":0,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp","keywords":["Code first","Dataverse"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/","name":"How to Run a Manufacturing Facility Using the One Microsoft Cloud - Microsoft Power Platform Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp","datePublished":"2021-04-29T17:00:00+00:00","dateModified":"2025-06-11T14:54:30+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2021\/04\/manufacturing_demo.webp","width":886,"height":505,"caption":"graphical user interface"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2021\/04\/29\/how-to-run-a-manufacturing-facility-using-the-one-microsoft-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Run a Manufacturing Facility Using the One Microsoft Cloud"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","name":"Microsoft Power Platform Blog","description":"Innovate with Business Apps","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization","name":"Microsoft Power Platform Blog","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","width":194,"height":145,"caption":"Microsoft Power Platform Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/760340e94549da0defd21d0c8a850224","name":"Shayne Boyer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g01e8eb2c5b4d72737f473858c5c823c3","url":"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a5855d1c73decea035c4e1e4c703fe88a81811f1627cb1a98b192516e98399ef?s=96&d=mm&r=g","caption":"Shayne Boyer"},"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/shboyer\/"}]}},"bloginabox_animated_featured_image":null,"bloginabox_display_generated_audio":false,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Power Platform Blog","distributor_original_site_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/14315","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/users\/237"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/comments?post=14315"}],"version-history":[{"count":1,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/14315\/revisions"}],"predecessor-version":[{"id":130381,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/14315\/revisions\/130381"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media\/14318"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media?parent=14315"}],"wp:term":[{"taxonomy":"audience","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/audience?post=14315"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/content-type?post=14315"},{"taxonomy":"job-role","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/job-role?post=14315"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/product?post=14315"},{"taxonomy":"property","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/property?post=14315"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/topic?post=14315"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/coauthors?post=14315"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}