<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Microsoft Flow Archives - Code Creators</title>
	<atom:link href="https://www.codecreators.ca/category/microsoft-flow/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description></description>
	<lastBuildDate>Tue, 24 Feb 2026 20:42:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>Creating Power Automate Flows with HTTP Requests and JSON Parsing</title>
		<link>https://www.codecreators.ca/creating-power-automate-flows-with-http-requests-and-json-parsing/</link>
					<comments>https://www.codecreators.ca/creating-power-automate-flows-with-http-requests-and-json-parsing/#respond</comments>
		
		<dc:creator><![CDATA[George Ali]]></dc:creator>
		<pubDate>Mon, 15 Dec 2025 13:14:27 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[Power Automate]]></category>
		<category><![CDATA[power automate flow]]></category>
		<guid isPermaLink="false">https://www.codecreators.ca/?p=17904</guid>

					<description><![CDATA[Power Automate is an excellent tool to connect various apps and automate tasks within Microsoft 365. It handles simple tasks, such as sending an email when a new file is uploaded to SharePoint. But what happens when you need your flow to talk to a system outside of Microsoft, such as a specialized weather service [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><a href="https://www.microsoft.com/en-us/power-platform/products/power-automate">Power Automate</a> is an excellent tool to connect various apps and automate tasks within Microsoft 365. It handles simple tasks, such as sending an email when a new file is uploaded to SharePoint. But what happens when you need your flow to talk to a system outside of Microsoft, such as a specialized weather service or a custom finance application?</p>



<p>This requires using the <a href="https://learn.microsoft.com/en-us/power-automate/desktop-flows/actions-reference/web">HTTP Request action</a> and JSON Parsing. This combination allows your power automate flows to reach out to virtually any web service (API) in the world, pull back information, and understand it. In this article we will discuss &nbsp;how to use http requests in power automate to call external APIs and enable complex API integrations with power automate, greatly expanding your automation abilities.</p>



<h2 class="wp-block-heading"><strong>Useful Power Automate Flows and Business Flow Power Automate: The HTTP Action</strong></h2>



<p>To talk to an external system, your power automate flows must speak the language of the web, which is the HTTP Request. This request acts like a digital courier, carrying instructions from your automation to a remote server and bringing back the data you need.</p>



<h3 class="wp-block-heading"><strong>1. What an HTTP Request Is</strong></h3>



<p>An HTTP request is just a digital message that your Flow sends to a web service (API). It&#8217;s similar to the type of request your web browser makes when you go to open a website, but instead of returning a page to display, the Flow is requesting data or initiating a process.</p>



<p>The HTTP action in Power Automate lets you define four key things:</p>



<ul class="wp-block-list">
<li><strong>Method:</strong> What do you want to do?</li>



<li><strong>GET:</strong> Ask for information (e.g., get the current stock price).</li>



<li><strong>POST:</strong> Send information to the service (e.g., create a new customer record).</li>



<li><strong>PUT/PATCH:</strong> Update existing information, for instance, changing an address in the database.</li>



<li><strong>DELETE:</strong> Remove information from the remote system.</li>



<li><strong>URI (Uniform Resource Identifier): </strong>This is the exact web address of the service you want to talk with. In other words, it&#8217;s the digital mailing address for the API.</li>



<li><strong>Headers:</strong> Additional information the service requires. For instance, you can tell that the data is being sent in JSON format.</li>
</ul>



<p>Authentication: The secure credentials the service needs to prove that you are allowed to access the data. This keeps your business flow Power Automate connections safe.</p>



<h3 class="wp-block-heading"><strong>2. Why This Creates Useful Power Automate Flows</strong></h3>



<p>Most modern applications provide an API. By mastering the HTTP action, your flows can do far more than simple file management. They can:</p>



<ul class="wp-block-list">
<li>Check a specific inventory system for stock levels across multiple warehouses.</li>



<li>Get real-time currency conversion rates for a global finance calculation.</li>



<li>Send a customer survey score to a third-party CRM system like Salesforce or HubSpot.</li>



<li>Trigger a text message alert through a service like Twilio when a high-priority ticket arrives.</li>
</ul>



<p>This is what makes truly useful power automate flows possible for advanced API integrations with power automate.</p>



<h2 class="wp-block-heading"><strong>Business Process Flows in Power Automate and JSON Parsing Automation</strong></h2>



<p>When an external service responds to your HTTP request, it typically sends back the data in a standardized format called JSON (JavaScript Object Notation). JSON is text that is structured with clear labels, making it easy for machines to read. However, Power Automate needs to know what those labels mean before it can use the data in later steps. This requires JSON parsing automation.</p>



<h3 class="wp-block-heading"><strong>1. The Role of JSON and the Parse JSON Action</strong></h3>



<p>You cannot use raw JSON as plain text if you want to pick out specific details. Therefore, you must use the Parse JSON action. This action breaks down the long string of text into individual fields that you can select from the &#8220;Dynamic Content&#8221; menu.</p>



<ul class="wp-block-list">
<li><strong>Schema:</strong> The Parse JSON action needs a Schema. This Schema, in essence, is a dictionary or a map. It explains to Power Automate that &#8220;The value labeled as &#8216;price&#8217; will be a number, and the value labeled as &#8216;status&#8217; will be text.&#8221;</li>
</ul>



<h3 class="wp-block-heading"><strong>2. Building the Schema for JSON Parsing Automation</strong></h3>



<p>The simplest way to obtain the required Schema would be to execute your HTTP request and capture the output.</p>



<ul class="wp-block-list">
<li>Run the Flow once and copy the body of the HTTP response.</li>



<li>Go back to your Flow editor and add the Parse JSON action.</li>



<li>Click on Generate from sample.</li>



<li>Paste your captured JSON.</li>
</ul>



<p>Power Automate will automatically create a schema map for you. Now, when this data has been parsed, it becomes possible for the &#8220;Flow&#8221; to identify these different components of information as separate, usable variables. This enables true JSON parsing automation.</p>



<h2 class="wp-block-heading"><strong>Advanced Flow Configurations for Robust APIs</strong></h2>



<p>Creating reliable business process flows in power automate, which depend on external APIs, needs attention to detail and a plan for handling possible failures. An automated system is only as good as its ability to recover from errors.</p>



<h3 class="wp-block-heading"><strong>1. Authentication Best Practices</strong></h3>



<p>Most APIs implement some form of security. You should set this up correctly in the HTTP action to prevent unauthorized access. Common methods include:</p>



<ul class="wp-block-list">
<li><strong>API Key:</strong> A simple code to be sent in the Header or URI.</li>



<li><strong>OAuth 2.0:</strong> A more advanced method where Power Automate requests a token to access the system.</li>
</ul>



<p>Sensitive authentication credentials should always be stored in a secure way, such as in an Azure Key Vault, rather than being manually entered in flow steps. This protects your company from data leaks if someone views the Flow configuration.</p>



<h3 class="wp-block-heading"><strong>2. Handling Failures and Timeouts</strong></h3>



<p>What will happen if your external API goes down? Your Flow will fail. To make your business process flows in Microsoft Power Automate more reliable and not let your entire process fail, you can make use of these options:</p>



<ul class="wp-block-list">
<li><strong>Retry Policy:</strong> You can set up an HTTP Action with a flow that retries a failed operation. The flow will retry an operation three times with a 20-second delay before making a subsequent attempt. It&#8217;s excellent for resolving issues with a short-term network issue.</li>



<li><strong>Scope and Error Handling:</strong> You can wrap the HTTP action and the Parse JSON action inside a Scope block. You then configure the next action to run only if the Scope fails (using the &#8220;Configure run after&#8221; setting). This allows you to execute specific actions in case of failure, like sending a &#8220;failure alert&#8221; email or logging the error in a SharePoint list.</li>
</ul>



<h4 class="wp-block-heading"><strong>Can I use the HTTP request action in Power Automate to upload a document to a different company&#8217;s secure file storage system?</strong></h4>



<p>Yes, you can, if there is an API for a file storage system which has a public interface that will enable you to upload your file using HTTP POST. It implies that your HTTP request should include your authentication credentials. Your request would contain the actual file data you are sending, which would be encoded in a format (like Base64) that the API can read. This is one of the key API integrations with power automate that you can perform to bridge different organizations.</p>



<h2 class="wp-block-heading"><strong>Conclusion: Power Automate Flows Unlock New Potential</strong></h2>



<p>The use of HTTP Request and Parse JSON actions represents a critical step in harnessing Power Automate flow capabilities. Knowledge on how to use HTTP request functionality in <a href="https://www.codecreatorsinc.com/sharepoint-power-automate/">Power Automate</a> to integrate with other APIs, as well as expertise in how to automate JSON parsing, empowers your company with advanced capabilities of configuring your flows in a way that your company will be able to automate all other systems.</p>



<h2 class="wp-block-heading"><strong>FAQs</strong></h2>



<h4 class="wp-block-heading">Q: What is the main reason to use an HTTP Request in a Power Automate flow?</h4>



<p>The main reason is to connect your flow to systems outside of Microsoft, like a custom website or a specialized service (API). This allows you to get or send data to almost anything.</p>



<h4 class="wp-block-heading">Q: What is the difference between a GET and a POST request?</h4>



<p>A GET request is when your Flow asks for data (like &#8220;Give me the stock price&#8221;). A POST request is when your Flow sends data to the external service (like &#8220;Create a new record in your system&#8221;).</p>



<h4 class="wp-block-heading">Q: How do I make sure my Power Automate flow doesn&#8217;t fail if the external system is down?</h4>



<p>You can configure HTTP action to automatically try the request again (a &#8220;Retry Policy&#8221;). You can also set up error handling to send an alert email if the connection permanently fails.</p>



<h4 class="wp-block-heading">Q: Where should I store the security details for the HTTP request?</h4>



<p>You should store sensitive security details, like API keys, in a secure place, such as Azure Key Vault. You should not type them directly into the Flow steps.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/creating-power-automate-flows-with-http-requests-and-json-parsing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How Microsoft Power Automate is Revolutionizing Business Process Automation?</title>
		<link>https://www.codecreators.ca/how-microsoft-power-automate-is-revolutionizing-business-process-automation/</link>
					<comments>https://www.codecreators.ca/how-microsoft-power-automate-is-revolutionizing-business-process-automation/#comments</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Fri, 04 Aug 2023 19:27:02 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=12643</guid>

					<description><![CDATA[Microsoft Power Automate is a powerful tool that is transforming the way businesses operate by automating their processes. With this platform, businesses can streamline their workflow, reduce manual labor, and increase productivity. In this blog, we will explore how Power Automate is revolutionizing business process automation. What is Microsoft Power Automate? Microsoft Power Automate is [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Microsoft Power Automate is a powerful tool that is transforming the way businesses operate by automating their processes. With this platform, businesses can streamline their workflow, reduce manual labor, and increase productivity. In this blog, we will explore how Power Automate is revolutionizing business process automation.</p>
<h3><strong>What is Microsoft Power Automate?</strong></h3>
<p>Microsoft Power Automate is a cloud-based service that enables businesses to automate their workflows. With Power Automate, businesses can automate repetitive tasks and integrate various applications to create streamlined and efficient workflows. The platform offers a user-friendly interface, making it easy for businesses to create and manage their workflows.</p>
<p>Power Automate offers a range of features, including connectors to over 350 applications, automation templates, and custom workflows. The platform also offers a wide range of triggers, actions, and conditions that businesses can use to create custom workflows that meet their specific needs.</p>
<h2><strong>Benefits of Power Automate for Business Process Automation</strong></h2>
<p>Power Automate is transforming the way businesses operate by enabling them to automate their processes. Here are some of the benefits of using Power Automate for business process automation:</p>
<h3><strong>1. Streamlined Workflows</strong></h3>
<p><a href="https://www.codecreators.ca/microsoft-flow/">Power Automate</a> offers a range of features that enable businesses to streamline their workflows. For example, businesses can create custom workflows that automate specific tasks, such as data entry, file transfers, and approval processes. These workflows can be triggered automatically or manually, depending on the business needs. Additionally, Power Automate offers a wide range of templates that businesses can use to create workflows quickly and easily.</p>
<p>By automating their workflows, businesses can reduce the time and effort required to complete tasks, resulting in increased efficiency and productivity. Additionally, automating workflows can help businesses identify bottlenecks and inefficiencies, enabling them to optimize their processes further.</p>
<h3><strong>2. Increased Productivity</strong></h3>
<p>One of the significant benefits of Power Automate is the increased productivity it offers. By automating repetitive tasks, such as data entry and document processing, businesses can free up their employees’ time to focus on more important tasks. This results in increased productivity and improved employee satisfaction.</p>
<p>Additionally, Power Automate enables businesses to create workflows that are tailored to their specific needs. This means that employees can work more efficiently and effectively, as they have the tools and resources, they need to complete tasks quickly and accurately.</p>
<h3><strong>3. Improved Accuracy</strong></h3>
<p>Manual data entry is prone to errors, which can be costly for businesses. Power Automate eliminates the need for manual data entry, reducing the risk of errors and improving the accuracy of data. For example, businesses can create workflows that automatically populate fields in a database or CRM system, eliminating the need for manual data entry.</p>
<p>Additionally, Power Automate can be used to create workflows that ensure data is validated and verified before it is processed. This means that businesses can be confident that the data they are working with is accurate and reliable, reducing the risk of errors and improving decision-making.</p>
<h3><strong>4. Enhanced Collaboration</strong></h3>
<p>Power Automate offers businesses the ability to integrate their applications, making it easier for teams to collaborate. By integrating applications such as <a href="https://www.codecreators.ca/microsoft-teams/">Microsoft Teams</a>, SharePoint, and Outlook, businesses can streamline their workflows and improve communication between teams.</p>
<p>For example, Power Automate can be used to create a workflow that automatically sends an email notification to team members when a new file is uploaded to SharePoint. This ensures that team members are informed about new files and can collaborate more effectively.</p>
<p>Additionally, Power Automate offers businesses the ability to create custom connectors that enable them to integrate their applications further. These connectors can be used to integrate with third-party applications, such as Salesforce or Dropbox, making it easier to share data across applications and improve collaboration between teams.</p>
<h3><strong>5. Cost Savings</strong></h3>
<p>Another significant benefit of Power Automate is the cost savings it offers. By automating their processes, businesses can save time and money. Automation reduces the need for manual labor, resulting in cost savings for the business. Additionally, by streamlining their workflows, businesses can reduce the time it takes to complete tasks, resulting in further cost savings.</p>
<p>Furthermore, Power Automate offers businesses the ability to monitor and analyze their workflows, enabling them to identify inefficiencies and areas where cost savings can be made. This means that businesses can optimize their processes further and reduce costs across their operations.</p>
<p>Overall, Power Automate is a powerful tool that is revolutionizing business process automation. By offering streamlined workflows, increased productivity, improved accuracy, enhanced collaboration, and cost savings, Power Automate is helping businesses to operate more efficiently and effectively in today&#8217;s fast-paced business environment.</p>
<p>Read also → <a href="https://www.codecreators.ca/leverage-sharepoint-for-team-collaboration-and-communication/">How to Leverage SharePoint for Team Collaboration &amp; Communication?</a></p>
<h3><strong>Use Cases of Power Automate</strong></h3>
<p>Power Automate can be used in various industries and business functions. Here are some of the use cases of Power Automate:</p>
<h4><strong>1. HR Processes</strong></h4>
<p>Power Automate can be used to automate various HR processes, such as onboarding, offboarding, and performance management. This platform can automate repetitive tasks, such as data entry, sending emails, and generating reports, freeing up HR personnel’s time to focus on more important tasks.</p>
<h4><strong>2. Sales Processes</strong></h4>
<p>Power Automate can be used to automate various sales processes, such as lead management, prospecting, and customer management. This platform can automate repetitive tasks, such as sending emails, updating CRM records, and generating reports, freeing up sales personnel&#8217;s time to focus on more important tasks.</p>
<h4><strong>3. Finance Processes</strong></h4>
<p>Power Automate can be used to automate various finance processes, such as invoice processing, payment processing, and financial reporting. This platform can automate repetitive tasks, such as data entry, sending emails, and generating reports, reducing the risk of errors and improving the accuracy of financial data.</p>
<h4><strong>4. Marketing Processes</strong></h4>
<p>Power Automate can be used to automate various marketing processes, such as lead generation, email marketing, and social media management. This platform can automate repetitive tasks, such as sending emails, updating CRM records, and generating reports, freeing up marketing personnel’s time to focus on more important tasks.</p>
<h4><strong>5. IT Processes</strong></h4>
<p>Power Automate can be used to automate various IT processes, such as software deployment, system monitoring, and incident management. This platform can automate repetitive tasks, such as sending emails, updating tickets, and generating reports, freeing up IT personnel&#8217;s time to focus on more important tasks.</p>
<h5><strong>Conclusion</strong></h5>
<p>In conclusion, <a href="https://www.codecreators.ca/microsoft-flow/">Microsoft Power Automate</a> is transforming the way businesses operate by automating their processes. This powerful platform offers a range of benefits, including streamlined workflows, increased productivity, improved accuracy, enhanced collaboration, and cost savings. These benefits are achieved by eliminating the need for manual labor, automating repetitive tasks, and integrating applications to improve communication and collaboration between teams.</p>
<p>Furthermore, Power Automate is highly versatile, offering various use cases across different industries and business functions. This makes it a valuable tool for businesses of all sizes, from small startups to large enterprises.</p>
<p>As more businesses look to digital transformation to remain competitive, Power Automate is becoming an essential tool for streamlining operations and improving efficiency. With its wide range of features and benefits, Power Automate is helping businesses to operate more effectively in today&#8217;s fast-paced business environment. For reliable Power Automate Services <a href="https://www.codecreators.ca/contact-us/">contact Code Creators Inc</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/how-microsoft-power-automate-is-revolutionizing-business-process-automation/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>MS PowerApps Pricing – Everything You Need to Know</title>
		<link>https://www.codecreators.ca/ms-powerapps-pricing-everything-you-need-to-know/</link>
					<comments>https://www.codecreators.ca/ms-powerapps-pricing-everything-you-need-to-know/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Mon, 30 May 2022 23:06:29 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=12243</guid>

					<description><![CDATA[Microsoft PowerApps looks ideal at a glance, but buyers actually need to be very aware of the hidden costs. Before you make the jump, here is what you need to know about PowerApps licensing and pricing. Let’s Understand Microsoft PowerApps Cost First PowerApps is the most popular low-coding platform by Microsoft, which is now a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Microsoft PowerApps looks ideal at a glance, but buyers actually need to be very aware of the hidden costs. Before you make the jump, here is what you need to know about PowerApps licensing and pricing.</p>
<h3><strong>Let’s Understand Microsoft PowerApps Cost First</strong></h3>
<p>PowerApps is the most popular low-coding platform by Microsoft, which is now a part of the Microsoft Power Platform Suite. One of the most significant advantages of MS PowerApps is that it is a part of the MS Office 365 Suite. Apart from this, it also works well with critical applications such as MS Dynamics 365, Power BI, and <a href="https://www.codecreators.ca/sharepoint-development-services/">Microsoft SharePoint</a>.</p>
<p>Nevertheless, where it is effective for developing basic business applications, there are many limitations and hidden costs within the Microsoft licensing app plans and guides. Let’s take a closer look at what PowerApps’ pricing, licensing, benefits, and shortcomings for the business users. <strong>  </strong></p>
<h2><strong>Benefits of Using PowerApps for Business</strong></h2>
<h4><strong>1. Speed</strong></h4>
<p>With MS PowerApps, you get the chance to personalize and design your own user interface. With Canvas App you can do it without any difficulty, as it provides plenty of ready-to-use templates and features. Such power platforms enable you to organize and position your own controls. All you require is some creativity to induce your business personality and knowledge in it. And to design lightweight and non-complex apps quickly, you do not require any prior coding experience.</p>
<h4><strong>2. Durability</strong></h4>
<p>Users often build model-driven applications in support of Common Data Services used to create business processes, forms, and business principles. Business companies may also use these applications for long-hours too. The majority of the layouts and templates are ready-made and designated by the components that you select.</p>
<h4><strong>3. Easy App Development </strong></h4>
<p>As mentioned above, MS PowerApps is pre-packed with coding already and you do not require any prior coding knowledge to create apps. All you need to do is to follow the instructions provided by the PowerApps guide to create an application. However, its user interface has a surplus of menus, and hence it may take some time to grasp the complete knowledge.</p>
<h4><strong>4. MS Office 365 Integrations</strong></h4>
<p>Since MS PowerApps is a part of MS Office 365 Suite, it integrates really well with MS Power BI and <a href="https://www.codecreators.ca/microsoft-flow/">MS Flow</a>, etc. It is easier for the users to get data out from MS Office 365 Apps, which makes the routine business process fast and efficient.</p>
<h4><strong>5. Branded Mobile Applications</strong></h4>
<p>Since your app must run within MS PowerApps Mobile App, you do not need to separately craft a branded mobile application that is submitted to app stores.</p>
<h4><strong>6. Easy Standard Connectors </strong></h4>
<p>For non-experienced app developers, this could be really challenging to learn how to connect to data. With PowerApps, you can easily connect to many standards storage services. Also, the ready-made templates and drag &amp; drop selections make it fast and easy to access data from common Microsoft applications and other cloud services.</p>
<h3><strong>Limitations of MS PowerApps</strong></h3>
<h4><strong>1. Not Suitable for Businesses with Multiple Vendors</strong></h4>
<p>Microsoft has a practice of encouraging its customers to keep within its ecosystems and the same is the case with PowerApps. Although <a href="https://www.codecreators.ca/microsoft-powerapps/">PowerApps integrates</a> really well with other Microsoft platforms such as MS Power Automate, MS Flow, and MS Power BI. But does not integrate with all kinds of third-party solutions and that is why it is not enough with businesses that use solutions from multiple vendors.</p>
<h4><strong>2. Issues in Data Sharing &amp; Distributing</strong></h4>
<p>Sharing apps built with PowerApps usually do not post any problem for the internet users. However, sharing your business app with users outside of your company becomes a very challenging task.</p>
<h4><strong>3. Not an Ideal High-Performance Solution</strong></h4>
<p>PowerApps run perfectly on devices such as on web-browsers and PowerApps player. However, if you require a quick and high-performance solution, then PowerApps may not be the ideal choice for you.</p>
<h4><strong>4. Larger PowerApps Don’t Work as Effectively as Smaller Ones</strong></h4>
<p>As compared to smaller, less complex PowerApps, the larger ones do not work effectively. Smaller changes can damage the performance of the whole application. Complex PowerApps require users to write codes several times, and every time you tweak it, you need to add the new code with the older one. This makes the entire task too tedious and difficult, especially if you are a seasonal developer.</p>
<h4><strong>5. Limited to Cloud Hosting</strong></h4>
<p>PowerApps are only limited to hosting the application through the cloud. For institutions such as financial institutes, military, and air-gapped systems, this is a major deal-breaker, as they rely on different ways to host their applications and do not put their data on the cloud due to security issues.</p>
<h4><strong>6. Overly Dependent to MS Azure</strong></h4>
<p>PowerApps features need access to MS Azure tools. The more you use them, the harder it will become to you to migrate to other platforms or environments.</p>
<h3><strong>Who Can Use PowerApps? Is It Really Worth the Hype?</strong></h3>
<p>PowerApps allows its users to build applications without having any prior coding experience. The software enables developers to programmatically integrate with metadata and data, apply business logic, create custom connectors and integrate the platform with external data sources.</p>
<p>It is next to impossible to find a development platform that adapts all your company’s needs precisely. Also, it takes time to integrate a new platform into your existing system, and therefore, achieving instant profits is very rare.</p>
<ul>
<li>If you already have a subscription to MS Office 365, then MS PowerApps enables you to create different custom apps that will integrate various platforms.</li>
<li>With PowerApps you can also access data from 200 external data sources. These data sources include Dropbox, Outlook and Salesforce.</li>
</ul>
<h3><strong>What Are the Hidden Costs of MS PowerApps?</strong></h3>
<p>Although Microsoft claims that PowerApps is free, you cannot create any actual kind of app unless you pay $50/user per month. However, there are different pricing plans offered by Microsoft. The first plan listed below requires businesses to pay $10 per license per user to run a single power app per user at a time. Also, every user is required to log-in with his company’s Office 365 user credentials.</p>
<p><strong>License Plan 1</strong> – This includes 4500 Microsoft Flow automation or ‘runs’ per user per month along with the access to MS Common Data Services. This plan is suitable for users that have no prior coding experience.</p>
<p><strong>License Plan 2</strong> – This plan is significantly more expensive and it costs $50 per user per month. With this you get 15,000 MS Flow runs/users per month. This plan is an ideal fit for experienced app developers.</p>
<h3><strong>Do You Need a Microsoft Dynamics License to Make PowerApps Work?</strong></h3>
<p>MS PowerApps can only be used within Microsoft Dynamics 365 or <a href="https://www.codecreators.ca/office-365-development/">Microsoft Office 365</a>. For instance, if you use MS SharePoint as your CRM, then you can use MS PowerApps to share your data. On the other hand, if you have a third-party CRM, then it would become an issue because for that you need to migrate your data from PowerApps. All in all, this is a very tedious and time-taking task.</p>
<h3><strong>Do PowerApps Require Any Backup Software to Work?</strong></h3>
<p>MS PowerApps is a great way to build web-based or mobile applications that provide extra functionality to other Microsoft platforms. Basically, it is a bolt-on or add-on software product. For example, the PowerApps-based app will schedule appointments for technicians and update their availability automatically within the Resource Scheduling application of Dynamics 365.</p>
<h3><strong>When Does a User Needs a License?</strong></h3>
<p>Whether you want to create an app or use PowerApps, you need to have a Microsoft Office 365 license. Both the pricing plans discussed above comes with a 90-days free trial. However, these trial licenses come with limited access to data sources by Microsoft. For instance, a user who wants to connect with MS SharePoint cannot access any data if he does not have an Office 365 license.</p>
<h3><strong>What Other Costs Are Involved?</strong></h3>
<p>By using Microsoft App Portals, you can easily give access to external users or people outside your organization. To serve the purpose, there are two types of licenses available. The first type enables you to only allow your authorized users to access the application. Whereas, the second one enables anonymous external users to access your application. PowerApps Portals are included in the Office 365 subscription. But, obviously, there are costs involved.</p>
<p><strong>PowerApps Portal Licensing</strong></p>
<p>PowerApps Portals are licensed under the following prices;</p>
<ul>
<li><strong>For External Users (Authorized Users)</strong> the charges are $200 for 100 logins per month.</li>
<li><strong>For External Users (Anonymous Users)</strong> the charges are $100 for 100,000 web-page views per month.</li>
<li><strong>Internal users</strong> can access the portal anytime by using a per-user or per-app plan.</li>
</ul>
<h3><strong>Does PowerApps Require Any Additional Software?</strong></h3>
<p>If you have already subscribed to MS Office 365 Enterprise E1 or a higher subscription plan, then PowerApps will be included in the suite already. By using MS PowerApps, you can build applications on Microsoft Dynamics, Microsoft Office, MS SharePoint, or other Microsoft applications. However, it does not allow you to make an app for a non-Microsoft platform.</p>
<p><a href="https://www.codecreators.ca/microsoft-powerapps/">MS PowerApps</a> is specifically used for creating internal applications, which comes with its distinctive set of pros and cons. Every user is required to have an MS Office 365 license to develop an internal business application. However, someone outside the company cannot make any changes; also, the in-house developers cannot add any custom JavaScript or HTML to modify the application.</p>
<h3><strong>Conclusion </strong></h3>
<p>No matter what direction you choose for your organization, it is important for you to know about the following factors of PowerApps before you make any decision.</p>
<ul>
<li>MS PowerApps is a very popular no-coding or low-coding platform. However, it does have some hidden costs and limitations.</li>
<li>It has a limited offline capacity which means that the application will not work without the internet, which is basically an unavoidable function for field workers or workers on the go.</li>
<li>For every team member, you have to purchase a separate license.</li>
<li>You cannot share your PowerApps based app with people outside your organization without purchasing external user authorization and license.</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/ms-powerapps-pricing-everything-you-need-to-know/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Using Power BI and Microsoft Flow for SharePoint Reporting</title>
		<link>https://www.codecreators.ca/using-power-bi-and-microsoft-flow-for-sharepoint-reporting/</link>
					<comments>https://www.codecreators.ca/using-power-bi-and-microsoft-flow-for-sharepoint-reporting/#respond</comments>
		
		<dc:creator><![CDATA[George Ali]]></dc:creator>
		<pubDate>Fri, 09 Jul 2021 17:43:59 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[Microsoft Power BI]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=11940</guid>

					<description><![CDATA[Being a data analyst at Code Creators Inc. I keep looking for better methods of data visualization. With the increasing demand and significance of effective data visualization, Power BI has come into trends lately. With user-friendly features for data visualization and reporting, Microsoft Power BI has become one of the most sought after tool by [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Being a data analyst at Code Creators Inc. I keep looking for better methods of data visualization. With the increasing demand and significance of effective data visualization, Power BI has come into trends lately. With user-friendly features for data visualization and reporting, Microsoft Power BI has become one of the most sought after tool by business enterprises. We find Power BI especially useful when it comes to reporting on SharePoint lists and folders on regular basis; which is actually a great to make sure that your end-users are actually adopting and using the tool in right way.</p>
<p>While using it in blend with Microsoft Flow, you can also explore a whole new world of features, knowing that Microsoft Flow can also send data to Power BI automatically, if you want to. And, when it comes to SharePoint, we all know that entire MS Office 365 suite is an assemblage of highly productive collaborative tools; but it will only be as much useful, as the end-user will make it.</p>
<p>In this post, we will teach you about using Power BI and configuring MS Flow for SharePoint reporting.</p>
<h4><strong>What is Power BI?</strong></h4>
<p>This short overview is for those, who don’t have primary knowledge about the Power BI tool. Power BI is an intelligent data visualization tool originated and managed by Microsoft. The tool is available in multiple versions ranging from Free to Premium Power BI version. Power BI is a cloud-based BI (Business Intelligence) service, along with a desktop-based interface. Both environments allow its users to create dashboards and reports for their desired custom visualizations.</p>
<p>If you have ever used reporting tools such as SQL Server Reporting Services then please don’t get Power BI confused with it, because Power BI has a very attractive, engaging and user-friendly interface. Using Power BI, you can publish your reports and dashboards online to any group of MS Office 365, in just few clicks.</p>
<h2><strong>Power BI and SharePoint</strong></h2>
<p>Today, a lot of business organizations choose modern intranet on SharePoint in Microsoft Office 365. Hence, it is very useful to create and store Power BI reports on <a href="https://www.codecreators.ca/sharepoint-development-services/" target="_blank" rel="noopener">SharePoint development</a>. At Code Creators Inc. we provide extensive training to client companies and their users about how they can use the tool efficiently. Below are the step-by-step instructions given to create a <a href="https://www.codecreators.ca/power-bi-consulting/" target="_blank" rel="noopener">Power BI dashboard</a> while using data from SharePoint.</p>
<h3><strong>How to Create a Power BI Dashboard?</strong></h3>
<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-11944 size-full" src="http://codecreators.ca/wp-content/uploads/2021/07/01-1.jpg" alt="" width="730" height="582" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/01-1.jpg 730w, https://www.codecreators.ca/wp-content/uploads/2021/07/01-1-300x239.jpg 300w" sizes="(max-width: 730px) 100vw, 730px" /></p>
<h4><strong>1. Download Power BI for Your Desktop</strong></h4>
<p>Power BI is available in two versions or environments i.e. Desktop and Online; however, we would suggest using Power BI Desktop for creating efficient and high-performing dashboards. And, you can always publish them with your colleagues by using Power BI Online.</p>
<blockquote><p>Read also: <a href="https://www.codecreators.ca/power-bi-key-features-and-benefits/" target="_blank" rel="noopener">Microsoft Power BI Key Features &amp; Benefits for Your Business</a></p></blockquote>
<h4><strong>2. Import Data From SharePoint</strong></h4>
<p>Once your Power BI Desktop is downloaded, logged-in and open, then you can simply click on the ‘<strong>Get Data’ </strong>button in the <strong>Home </strong>tab, present on the top ribbon, and then can access the data sources that are available to be used.</p>
<p><strong><img decoding="async" class="alignnone size-full wp-image-11945" src="http://codecreators.ca/wp-content/uploads/2021/07/02-1.jpg" alt="" width="431" height="529" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/02-1.jpg 431w, https://www.codecreators.ca/wp-content/uploads/2021/07/02-1-244x300.jpg 244w" sizes="(max-width: 431px) 100vw, 431px" /></strong></p>
<h4><strong>3. </strong><strong>Select The Right Data Type</strong></h4>
<p>Choose from three available SharePoint data connectors.</p>
<p>Add your SharePoint URL.</p>
<p>Once you reached to this step, you should be able to see three different types of SharePoint data connectors available;</p>
<ul>
<li>Online Lists.</li>
<li>Folders</li>
<li>Regular Lists.</li>
</ul>
<p>Now select your object type and then add SharePoint URL to it.</p>
<p><strong><img decoding="async" class="alignnone size-full wp-image-11946" src="http://codecreators.ca/wp-content/uploads/2021/07/03-1.jpg" alt="" width="511" height="274" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/03-1.jpg 511w, https://www.codecreators.ca/wp-content/uploads/2021/07/03-1-300x161.jpg 300w" sizes="(max-width: 511px) 100vw, 511px" /></strong></p>
<p><strong><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11947" src="http://codecreators.ca/wp-content/uploads/2021/07/04-1.jpg" alt="" width="582" height="220" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/04-1.jpg 582w, https://www.codecreators.ca/wp-content/uploads/2021/07/04-1-300x113.jpg 300w" sizes="auto, (max-width: 582px) 100vw, 582px" /></strong></p>
<h4><strong>4. Load Your Data</strong></h4>
<p>Now select the relevant list or folder from the left menu. Putting your cursor on the display options, you can see the data preview in the Navigator’s window.</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11948" src="http://codecreators.ca/wp-content/uploads/2021/07/05.jpg" alt="" width="802" height="498" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/05.jpg 802w, https://www.codecreators.ca/wp-content/uploads/2021/07/05-300x186.jpg 300w, https://www.codecreators.ca/wp-content/uploads/2021/07/05-768x477.jpg 768w" sizes="auto, (max-width: 802px) 100vw, 802px" /></strong></p>
<h4><strong>5. Edit Your Query To Make Good Visuals</strong></h4>
<p>Before importing and loading your data into Power BI Desktop, you might want to shape or adjust your data. In fact, it is a great idea to edit a certain query before loading it, specifically when working with large data sets. This can be achieved by clicking on Edit and then selecting further adjustment options from the Query Editor.</p>
<p>Query Editor is designed to shape and adjust your data needs. For instance, to keep data that can produce impactful visuals while removing the irrelevant parts.</p>
<p>This can be done through following steps;</p>
<ul>
<li>Combining &amp; Shaping Data.</li>
<li>Grouping Data Rows.</li>
<li>Pivot Columns.</li>
<li>Create Custom Columns.</li>
</ul>
<h4><strong><br />
6. Publish Your Report to Power BI Online</strong></h4>
<p>You have the option of publishing your report in your workspace or in any of your Office 365 Group workspaces.</p>
<p>When you are done and satisfied adjusting your visuals, you can then publish your reports to Power BI Online, simply by clicking on the Publish button. In case, your Power BI is not activated within your <a href="https://www.codecreators.ca/office-365-development/" target="_blank" rel="noopener">MS Office 365</a>, you will be then asked to activate it then and there.</p>
<h4><strong>7. Find Your Published Report On Power BI Online</strong></h4>
<p>You can find reports in the Grey Section, in the center of the left column, as soon as you log into your Power BI home-screen. You can also find the following section;</p>
<ul>
<li><strong>Workspace:</strong> Workspace in Power BI is your personal space of creativity. Workspace could be personal as well as there could be shared groups workspace.</li>
<li><strong>Dashboard:</strong> It is a high-level view of your reports that you have just created. You also have the option to transform your reports by pinning their tiles down.</li>
<li><strong>Reports:</strong> This is the data in report form that you are going to publish from your Power BI Desktop. In order to transform your Power BI Reports into Dashboards, you just need to pin your report tiles into dashboards.</li>
<li><strong>Datasets:</strong> Datasets are basically your data sources. You can go to this section and schedule auto refreshed in order to keep your data sources dynamic.</li>
</ul>
<h4><strong>8. Transform Your Report into A Dashboard</strong></h4>
<p>This step is very straightforward. All you need to do is to access your <a href="https://www.codecreators.ca/power-bi-consulting/" target="_blank" rel="noopener">Power BI report</a> and then click on the pin icon.</p>
<p>You can then create or choose the dashboard visuals that you want to be on.</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11949" src="http://codecreators.ca/wp-content/uploads/2021/07/06.jpg" alt="" width="642" height="332" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/06.jpg 642w, https://www.codecreators.ca/wp-content/uploads/2021/07/06-300x155.jpg 300w" sizes="auto, (max-width: 642px) 100vw, 642px" /></strong></p>
<h4><strong>9. </strong><strong>Schedule An Automated Refresh</strong></h4>
<p>This is a very important step; because your dashboards will never refresh if you don’t do it. Go to the section of <strong>Datasets</strong> and then click on <strong>‘…’ </strong>button, then you can now select and schedule your dashboard refresh. Here you will be given option to defined refresh frequency and to enter your credentials.</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11950" src="http://codecreators.ca/wp-content/uploads/2021/07/07.jpg" alt="" width="536" height="458" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/07.jpg 536w, https://www.codecreators.ca/wp-content/uploads/2021/07/07-300x256.jpg 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></strong></p>
<h4><strong>10. Share Your Dashboard</strong></h4>
<p>Now, your dashboards are fully functional with automated dashboard refreshing features enabled; and these dashboards can be easily shared. However, if you have designated workspace, you are required to grant access to your users. You can now connect them to Power BI Online, or can send them through URL. And you’re done.</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11951" src="http://codecreators.ca/wp-content/uploads/2021/07/08.jpg" alt="" width="1150" height="582" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/08.jpg 1150w, https://www.codecreators.ca/wp-content/uploads/2021/07/08-300x152.jpg 300w, https://www.codecreators.ca/wp-content/uploads/2021/07/08-1024x518.jpg 1024w, https://www.codecreators.ca/wp-content/uploads/2021/07/08-768x389.jpg 768w" sizes="auto, (max-width: 1150px) 100vw, 1150px" /></strong></p>
<h4><strong>Microsoft Flow and Power BI</strong></h4>
<p>Now that you have learnt how to set up a Power BI Dashboard by importing data from SharePoint, now let’s go to another step ahead. Let’s bring Microsoft Flow into the mix now, but let’s learn about its background quickly.</p>
<h4><strong>What is Microsoft Flow?</strong></h4>
<p>MS Flow is a SaaS (Software as a Service) that automates workflow across multiple apps and services. These automated workflows are commonly called Flows, and they are triggered to perform automatically perform different actions when any specific event occurs. With MS Flow, you can now automate tasks such as synchronizing files, getting notifications, collecting data and much more. Basically, MS Flow is a perfect way to automate repetitive and exhaustive tasks. With <a href="https://www.codecreators.ca/microsoft-flow/" target="_blank" rel="noopener">Microsoft Flow</a>, you can easily automate tasks such as File Synchronization, Data Collection, Notifications and much more.</p>
<p>In this case, we will be using MS Flow to collect SharePoint data for us and then it can be sent to Power BI without writing a single line of code.</p>
<h3><strong>How to Create A Microsoft Flow?</strong></h3>
<ol>
<li>Navigate to the homepage of MS Flow and create an account, if this is your first time to use. You can try out the service for free by choosing the Free Plan.</li>
<li>Do a quick search to see if the exiting flow template suits your needs. Also, you don’t need to create a workflow from the scratch, if it’s not needed. Now, let’s do a search for ‘SharePoint’.<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-11952" src="http://codecreators.ca/wp-content/uploads/2021/07/09.jpg" alt="" width="1024" height="669" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/09.jpg 1024w, https://www.codecreators.ca/wp-content/uploads/2021/07/09-300x196.jpg 300w, https://www.codecreators.ca/wp-content/uploads/2021/07/09-768x502.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></li>
<li>Now search for ‘Visualize Power BI’.<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-11953" src="http://codecreators.ca/wp-content/uploads/2021/07/10.jpg" alt="" width="758" height="780" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/10.jpg 758w, https://www.codecreators.ca/wp-content/uploads/2021/07/10-292x300.jpg 292w" sizes="auto, (max-width: 758px) 100vw, 758px" /></li>
<li>Enter URL for your needed SharePoint site and name the list, you want to track, also mention the destination within Power BI. (In the given case, we chose dashboard as the destination that we just set up). Now click Save.</li>
<li><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11954" src="http://codecreators.ca/wp-content/uploads/2021/07/11.jpg" alt="" width="704" height="530" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/11.jpg 704w, https://www.codecreators.ca/wp-content/uploads/2021/07/11-300x226.jpg 300w" sizes="auto, (max-width: 704px) 100vw, 704px" /></li>
<li>Again, search for ‘Update Power BI Dataset’ and turn up another template that could work for you.<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-11955" src="http://codecreators.ca/wp-content/uploads/2021/07/12.jpg" alt="" width="834" height="740" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/12.jpg 834w, https://www.codecreators.ca/wp-content/uploads/2021/07/12-300x266.jpg 300w, https://www.codecreators.ca/wp-content/uploads/2021/07/12-768x681.jpg 768w" sizes="auto, (max-width: 834px) 100vw, 834px" /></li>
<li>Again, after you confirm your selection, you can see and customize your flow, then click Save.<br />
<img loading="lazy" decoding="async" class="alignnone size-full wp-image-11956" src="http://codecreators.ca/wp-content/uploads/2021/07/13.jpg" alt="" width="592" height="818" srcset="https://www.codecreators.ca/wp-content/uploads/2021/07/13.jpg 592w, https://www.codecreators.ca/wp-content/uploads/2021/07/13-217x300.jpg 217w" sizes="auto, (max-width: 592px) 100vw, 592px" /></li>
</ol>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/using-power-bi-and-microsoft-flow-for-sharepoint-reporting/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Microsoft Power Automate Instead of SharePoint Workflows</title>
		<link>https://www.codecreators.ca/microsoft-power-automate-instead-of-sharepoint-workflows/</link>
					<comments>https://www.codecreators.ca/microsoft-power-automate-instead-of-sharepoint-workflows/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Wed, 09 Sep 2020 17:59:24 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Migration & Workflows]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=11376</guid>

					<description><![CDATA[Since it will no longer be possible for SharePoint Online clients to use SharePoint 2010 and SharePoint 2013 workflows by November 1, 2020, but luckily an alternative or the unofficial successor is already available to use in-house. Yes, the Microsoft Power Automate, but before looking into the features and uses of Power Automate, let’s have [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Since it will no longer be possible for <a href="https://www.codecreators.ca/sharepoint-online/">SharePoint Online</a> clients to use SharePoint 2010 and SharePoint 2013 workflows by November 1, 2020, but luckily an alternative or the unofficial successor is already available to use in-house. Yes, the Microsoft Power Automate, but before looking into the features and uses of Power Automate, let’s have a quick overview of workflows in SharePoint, to get the better understanding of their usage and effectiveness and their association with Power Automate.</p>
<h2><strong><u>Workflows in SharePoint </u></strong></h2>
<p>One of the central functions of SharePoint is the control of typical business processes with a fixed sequence. On the one hand, such workflows control &#8211; closely linked to document management &#8211; the joint editing of texts, calculations, presentations and much more. On the other hand, workflows are able to coordinate project tasks of various kinds. This not only makes it easier for everyone involved in the project to work on their workflow-defined tasks, it also increases operational efficiency and productivity.</p>
<p>SharePoint maps the sequence of tasks in a workflow and supports coordinated processing through the automated moving and distribution of documents or elements. In this way, processes such as project approvals or document releases can be managed clearly. The individual steps are documented and can be retraced later. In the example of a release process, for example, the author of a document starts the workflow by assigning the relevant tasks to the responsible persons and notifying them by e-mail. This gives them their instructions and access to the file to be shared. The document author can check the status &#8211; for example, which participants have already completed their tasks. He is automatically informed of the completion of the work.</p>
<p>Here, too, <a href="https://www.codecreators.ca/sharepoint-development-services/">SharePoint</a> works closely with Microsoft Office. Steps such as starting a workflow or assigning and completing tasks can not only be initiated in SharePoint, but also directly from compatible Office programs &#8211; for example, bringing a table into circulation directly from Excel.</p>
<p>Various workflows for typical business processes are already available &#8220;ex works&#8221; in SharePoint and can be flexibly adapted to the requirements of your company. Out-of-the-box there are, for example, workflows for approving documents or elements, for obtaining feedback or to collect required digital signatures. In addition, it often makes sense to have custom workflows created by <a href="https://www.codecreators.ca/software-development-services/">software developers</a> to precisely meet the individual needs of the organization or company.</p>
<h3><strong><u>What is Power Automate?</u></strong></h3>
<p>Microsoft Power Automate (formerly <a href="https://www.codecreators.ca/microsoft-flow/">Microsoft Flow</a>) is just like the SharePoint 2010 workflows a product for automating processes. A flow (= workflow) in Power Automate always starts with a trigger. Triggers can be very many different things, such as a change in a SharePoint list, a tweet with a certain keyword, etc. Then the incoming data can be used for actions. For more complex requirements there are also various logical modules, such as conditions and loops.</p>
<h3><strong><u>What do we use Power Automate for?</u></strong></h3>
<p>At <a href="https://www.codecreators.ca">Code Creators</a> Inc, we use Power Automate, among other things, to manage our vehicle fleet. Here, after applying for a company car, an email is automatically sent with the more precise details and information. The data subjects receive information about this and can check the data for accuracy.</p>
<p>For this purpose, a flow was created which always starts when an element in a SharePoint list or from a <a href="https://www.codecreators.ca/microsoft-powerapps/">Power App</a> is created or edited. The configuration in the application is then used to check whether a confirmation email should be sent for this data record. If this is the case, it is then assembled from the data of the SharePoint element and sent.</p>
<p>We want to give this simple example here, because <a href="https://www.codecreators.ca/sharepoint-workflows/">SharePoint Workflow</a> users should be familiar with such requirements. This is relatively easy to do in Power Automate. But here, too, we encountered a few problems that had to be solved first. E.g. we enable series production of vehicles. Here we have learned some tricks to achieve better performance.</p>
<h3><strong><u>Migrating from Classic Workflows To Power Automate Flows</u></strong></h3>
<p>The migration from the classic workflows to Power Automate Flows means first of all that the workflows have to be recreated. This turned out to be difficult in the past, as functionalities were missing here and there. Most of the functions were submitted later. However, a few restrictions remain. For example, a Power Automate Flow can only run for a maximum of 30 days. But there are workarounds here too. Microsoft has published an article for these problems that specifically deals with the differences and alternatives.</p>
<p><a href="https://docs.microsoft.com/en-us/sharepoint/dev/business-apps/power-automate/guidance/migrate-from-classic-workflows-to-power-automate-flows" rel="nofollow">https://docs.microsoft.com/en-us/sharepoint/dev/business-apps/power-automate/guidance/migrate-from-classic-workflows-to-power-automate-flows</a></p>
<p>If you think you are safe now, because only SharePoint 2013 workflows are used in SharePoint Online:</p>
<p><strong>Attention, SharePoint 2013 workflows have also been marked as outdated</strong>. For new clients, these will be deactivated by default from November 2020 and can only be reactivated using a PowerShell script. The signs are clear here too. <strong>Better to use Microsoft Power Automate now than later and switch over!</strong></p>
<p>For SharePoint Server customers nothing will change at first. In the current version of SharePoint Server 2019, 2010 and 2013 workflows can still be used. What it looks like after that is still in the stars.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/microsoft-power-automate-instead-of-sharepoint-workflows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Advantages &#038; Disadvantages of Power Automate (Formerly Microsoft Flow)</title>
		<link>https://www.codecreators.ca/advantages-disadvantages-of-power-automate/</link>
					<comments>https://www.codecreators.ca/advantages-disadvantages-of-power-automate/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Tue, 31 Mar 2020 16:47:41 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Flow]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=10772</guid>

					<description><![CDATA[Pros and cons of Power Automate (Formerly Microsoft Flow) &#8211; For Which Scenarios It Is Optimally Suited &#38; Where The Limits Are? The SharePoint Designer has served countless users in the workflow creation for many years. In the meantime, Microsoft has stopped developing the Designer and is fully relying on the Office 365 component Power [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2>Pros and cons of Power Automate (Formerly Microsoft Flow) &#8211; For Which Scenarios It Is Optimally Suited &amp; Where The Limits Are?</h2>
<p>The SharePoint Designer has served countless users in the workflow creation for many years. In the meantime, Microsoft has stopped developing the Designer and is fully relying on the Office 365 component Power Automate (formerly Microsoft Flow). It is a cloud engine based on logic apps. This means that many companies now have to deal with the question of whether Power Automate is a suitable replacement solution for the <a href="https://www.codecreators.ca/sharepoint-workflows/">SharePoint Designer</a> or what other options are available. A good starting point for this is an in-depth look at Power Automate &#8211; what advantages and disadvantages it has, both from a technical and a commercial perspective.</p>
<h4>The New Tool for Citizen Developers</h4>
<p>The many templates available are a great help to get started. Power Automate (Flow) is clearly tailored to the target group of ‘Citizen Developers’ i.e. to employees without a technical background who want to improve their everyday work with simple applications and automate repetitive tasks. The many available templates are a great help for getting started. You choose a suitable one, adapt to your individual needs with just a few clicks and get started. Help also comes from the Microsoft community, so that you can easily find tutorials and additional learning materials, or ask questions in forums directly to experts.</p>
<h4>Easy for Beginners, More Difficult for More Complex Tasks</h4>
<p>However, once more complex workflow scenarios are involved, knowledge of ‘Logic Apps&#8217; proprietary Workflow Definition Language (WDL) may be required. So if more complicated business scenarios are to be implemented, this quickly leads to a rather steep learning curve. This is especially true if connectors assume that suitable JSON files are already in place.</p>
<p>Being an entry-level product it does not put heavy demands on the infrastructure. Power Automate is included in the <a href="https://www.codecreators.ca/office-365-development/">Office 365</a> subscription as a cloud solution, although it should be noted here that the number of possible workflow instances is limited.</p>
<h4>The Advantages of Power Automate &#8211; Summarized</h4>
<p>Power Automate is very well suited for implementing workflows based on triggers. This enables tasks or chains of simple tasks to be automated. If you go to the list of the most frequently used templates in the Power Automate console, you will find many self-explanatory examples:</p>
<ul>
<li>Send a reminder to myself in 10 minutes.</li>
<li>Get weather forecast for today.</li>
<li>Get updates from the Power Automate blog.</li>
<li>Send custom email when a new SharePoint list item is added.</li>
<li>Start approval process for a new file to move it to another folder.</li>
</ul>
<p>These examples show that Power Automate is particularly suitable for &#8220;quick wins&#8221;, with which individual employees or small groups or departments can keep an eye on their daily tasks and handle simple approval processes.</p>
<h4>Many Connectors, IT-Independent Workflows</h4>
<p>In terms of its objectives, Power Automate (<a href="https://www.codecreators.ca/microsoft-flow/">Microsoft Flow</a>) fills a niche that providers of workflow software mostly ignore.</p>
<p>The high number of connectors for connecting to external services such as Facebook, Dropbox or Salesforce is also impressive. There are currently more than 200, many of which are only available in the premium version. They are mainly used as triggers, but depending on the scenario, they can also be used for data exchange.</p>
<p>In terms of its objectives, Power Automate fills a niche that the providers of workflow software usually ignore. Microsoft is primarily targeting employees and departments who want to set up their own automation systems in the workplace without having to go through the IT department every time. A vivid and frequently mentioned example of this is the monitoring of interactions on Twitter, as is typically required in the marketing and PR department. In such scenarios, Power Automate helps to prevent shadow IT and thus helps to avoid security risks.</p>
<h4>What Is Not Possible: The Limits of Using Power Automate</h4>
<p>The more complex a scenario is, the more difficult it is to implement with Power Automate.<br />
Is Power Automate now suitable for any type of workflow application, and what are the limits? As a rule of thumb, according to the current state of development, the more complex a scenario is, the more difficult it is to implement with Power Automate. An example of this would be a multi-stage approval scenario that spans multiple departments and contains a set of conditions to select approvers. If complex, bidirectional integrations into systems such as SAP are also required, then Power Automate is no longer the right choice.</p>
<p>Before implementing a workflow, you should therefore analyze the scenario and the business model in order to make a decision for or against Power Automate. The following list provides an overview of the specific limitations of Power Automate and can help you with your decision:</p>
<ul>
<li>Power Automate <strong>only</strong> supports <strong>sequential workflows</strong> (A to B to C). That means you cannot go back a step in a workflow process. Loops can be used as a workaround, but this requires additional work.</li>
<li>You can only use<strong> 250 actions</strong> <strong>per workflow</strong>. That may sound like a lot at first &#8211; but with many loops you can quickly reach this</li>
<li> limit.</li>
<li>Your workflow instances are backed up and saved <strong>only for 30 days</strong>. Although Microsoft is already working on raising the limit to 90 days soon. But still, it might not be sufficient for business-critical processes such as compliance, and audit trails etc.</li>
<li>Power Automate is <strong>not suitable for long-lasting workflows</strong> because they can run without warning.</li>
<li>A workflow <strong>cannot be changed</strong>, one you run it.</li>
<li><strong>Forms Customizations are not available.</strong> For this reason, Power Automate is typically combined with <a href="https://www.codecreators.ca/microsoft-powerapps/">Microsoft PowerApps</a>, but this also increases the costs.</li>
<li><strong>More complex business</strong> scenarios may not be feasible because certain functions are missing, or special knowledge such as WDL, creation of JSON files and the like are missing.</li>
<li><strong>Licensing can be difficult</strong> to control, especially when several employees in the company create workflows while using Power Automate.</li>
</ul>
<h4>Go with The Flow or Not?</h4>
<p>Whether Power Automate is the right workflow tool depends on the individual application. In any case, it is a lightweight, easy-to-use and friendly cloud-based tool that is ideal to implement simple setting that often call for triggered interaction via external solutions. It also works well in use cases where relatively straightforward approvals and various notifications are required.</p>
<p>However, as soon as business processes with a higher degree of complexity and possibly also compliance requirements have to be implemented, alternative workflow solutions should also be considered. An example of this would be WEBCON BPS, which is often also used for ‘bread and butter processes’ &#8211; from invoice approvals, requirements requests, vacation requests to onboarding. This is particularly interesting for larger companies, where extensive business logic has to be supported in the background. However, it is also used for company or industry specific business-critical processes.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/advantages-disadvantages-of-power-automate/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Use Microsoft Flow to Notify of New Files in a Folder?</title>
		<link>https://www.codecreators.ca/how-to-use-microsoft-flow-to-notify-of-new-files-in-a-folder/</link>
					<comments>https://www.codecreators.ca/how-to-use-microsoft-flow-to-notify-of-new-files-in-a-folder/#respond</comments>
		
		<dc:creator><![CDATA[George]]></dc:creator>
		<pubDate>Tue, 17 Sep 2019 16:48:34 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=8278</guid>

					<description><![CDATA[Power BI is one of the newest additions to the Microsoft team, and it comes with enterprise-level power business intelligence and analytic tools that can be highly beneficial for business analysts all over the globe. This kind of new-tech revolution was needed in today’s world, and it is at the disposal of big, small and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Power BI is one of the newest additions to the Microsoft team, and it comes with enterprise-level power business intelligence and analytic tools that can be highly beneficial for business analysts all over the globe. This kind of new-tech revolution was needed in today’s world, and it is at the disposal of big, small and medium-sized businesses alike. You no longer require a fully-functional technical team at your disposal to analyze your business’s needs because <a href="http://codecreators.ca/microsoft-powerapps/">Power BI consulting</a> can do it for you just the same.</p>
<p>That being said, how do you keep up with the many changes in Power BI and be notified whenever new files are added in a folder? You can use Microsoft Flow push notification services found in Power BI to obtain this. We are not saying that this feature is limited to Power BI only, as it can also be accomplished through the help of SharePoint independently. However, this post is all about what you can do with <a href="http://codecreators.ca/microsoft-flow/">Microsoft Flow</a> in Power BI.</p>
<p>Monitoring a Folder for Newly Added Files: Getting Microsoft Flow Push</p>
<h4>Notifications via Email</h4>
<p>Many processes in business are done manually, and that is the way it should be. Certain factors can only be analyzed by a human mind with the use of empathy, which a computer device does not have access to yet. However, certain tasks can be delegated to Power BI and automated with the help of Microsoft Flow push notifications. Here we have compiled a way for you to do that on your own.</p>
<h4>How to Monitor a Folder</h4>
<p>You can start with a OneDrive shared folder with a replica folder existing in your desktop device. This folder will then shadow as a SharePoint offline document library for this guide where you can set up a Flow trigger for it.</p>
<h4>Three Ways to Create a Flow</h4>
<p>In Microsoft Flow, you will get an option to create a blank Flow, or you can choose from three pre-existing templates listed below.<br />
1. Automated Flow<br />
A particular event triggers these flows.<br />
2. Instant Flow<br />
These flows are triggered manually by individuals.<br />
3. Scheduled Flow</p>
<p>You can set a custom trigger yourself for an event, time and frequency.</p>
<p>As a beginner, we recommend that instead of creating a blank Flow, you stick to an existing template that best reflects your needs. There are several moving elements that you will find in the existing templates, which can be quite tricky to set up in a new model yourself.</p>
<p>For a SharePoint file email, you can search in the list to find a suitable template. You will find a template to send an email when a new file is added into a folder.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8287 size-full" src="http://codecreators.ca/wp-content/uploads/2019/09/flow-images.jpg" alt="" width="1346" height="644" srcset="https://www.codecreators.ca/wp-content/uploads/2019/09/flow-images.jpg 1346w, https://www.codecreators.ca/wp-content/uploads/2019/09/flow-images-300x144.jpg 300w, https://www.codecreators.ca/wp-content/uploads/2019/09/flow-images-768x367.jpg 768w, https://www.codecreators.ca/wp-content/uploads/2019/09/flow-images-1024x490.jpg 1024w" sizes="auto, (max-width: 1346px) 100vw, 1346px" /></p>
<p>Here is a snapshot of the template to gauge a better understanding.</p>
<p>You will click on “Use this template” which will take you ahead to configure some of the settings to set up Flow triggers. You will get options to set emails for the following:<br />
• Office 365 Outlook<br />
• <a href="http://codecreators.ca/sharepoint-online/">SharePoint</a><br />
• Office 365 Users</p>
<p>Then you will be directed to a page where there are pre-existing configurations, and all you have to do is set folder names yourselves. You will also have to set an email template which will be sent directly to your inbox when a file is added into the folder you have created for your Flow. When you are done, click on Save and upload a file to test the email’s authenticity and to ensure smooth-sailing in the future endeavours. The email that you receive will have a hyperlink to the new record that you will easily be able to click on to direct you to the file itself, saving you a lot of time and hassle searching for it manually.</p>
<h4>Final Thoughts</h4>
<p>Unfortunately, we don’t get more options than this but we do have the opportunity to create multiple Flow triggers for different actions and events that occur in SharePoint. Since Microsoft keeps rolling out new and improved features, we can surely expect to see more innovative features towards the very start of the year 2020.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/how-to-use-microsoft-flow-to-notify-of-new-files-in-a-folder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Building a Ticketing System with Microsoft Flow in SharePoint</title>
		<link>https://www.codecreators.ca/building-a-ticketing-system-with-microsoft-flow-in-sharepoint/</link>
					<comments>https://www.codecreators.ca/building-a-ticketing-system-with-microsoft-flow-in-sharepoint/#respond</comments>
		
		<dc:creator><![CDATA[developers]]></dc:creator>
		<pubDate>Fri, 03 May 2019 22:36:52 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=3978</guid>

					<description><![CDATA[With the addition of PowerApps and Microsoft Flow into SharePoint, there is a lot that can be done to benefit each within an organization. If you have ever wanted to build a help desk ticket management system within SharePoint Online to help your employees manage all their tickets in one location, you have come to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">With the addition of PowerApps and <a href="http://codecreators.ca/Microsoft-flow/">Microsoft Flow</a> into SharePoint, there is a lot that can be done to benefit each within an organization. If you have ever wanted to build a help desk ticket management system within <a href="http://codecreators.ca/sharepoint-online/">SharePoint Online</a> to help your employees manage all their tickets in one location, you have come to the right place! The steps to creating a Ji ticket management system in SharePoint are relatively straightforward.</p>
<h3>Why You Need a Custom Build Ticketing System</h3>
<p style="text-align: justify;">Code Creators can help you create a singular platform in the form of a Ticketing list which will contain all the issues and concerns raised by your clients all in one place. This will make it easier for all the colleagues vested in one project to remain informed of all that needs to be done, without any delays in communication. Your &#8220;here &amp; now&#8221; requests from all of your customers will be quickly addressed with ease. Now that begs the question of how you create a custom issue ticketing list.</p>
<h4>Create a Custom Issue ticketing/List</h4>
<p style="text-align: justify;">You can create a custom list/issue tracking to help build help desk. For this purpose, you need to create two lists, one which will keep track of the emails and one which will be used to assign tasks to employees associated with a workflow. Of course, if this becomes complicated, you can always get a consultation with the expert <a href="http://codecreators.ca/sharepoint-consulting/">SharePoint consultants</a> available to you with Code Creators!</p>
<h4><strong>1.  Create a New List And Log In</strong></h4>
<p style="text-align: justify;">First, you will select Add an App followed by Custom List. After giving your custom list a name, you will click on <strong>Create. </strong>This will allow you to add multiple forms onto your IT Help Desk. Once this is done, open Microsoft Flow and then App Launcher. When App Launcher is running, click on <strong>Flow. </strong>Select <a href="http://codecreators.ca/sharepoint-development-services/">SharePoint service</a> from there and proceed to select the template called “Once an Outlook email is received, add it to SharePoint list.”. Synchronize this flow with your existing Office 365 ID and proceed to click on <strong>Continue. </strong></p>
<h4>2.  Track Emails and Determine Actions</h4>
<p style="text-align: justify;">This will give you the option to select a folder which will track the email. Select a folder, and there you will receive email, and your flow will become functional. Click on the option <strong>New Step</strong> and determine an action such as what is to be done when an email arrives. When you’re done with this, select <strong>SharePoint</strong>.</p>
<h4>3.   Add Dynamic Content</h4>
<p style="text-align: justify;">Select <strong>SharePoint – Create Item</strong> to add dynamic content such as email address, list names, emails, email subjects, email body and then proceed to save your flow. Once you have accomplished this, click on <strong>Done. </strong>Now whenever an email is received in Outlook, it will get stored in this list.</p>
<p>Are you satisfied or do you have some questions? Feel free to contact Code Creators with any queries you might have and let us help you!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/building-a-ticketing-system-with-microsoft-flow-in-sharepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Integrating SharePoint with Microsoft Flow</title>
		<link>https://www.codecreators.ca/integrating-sharepoint-with-microsoft-flow/</link>
					<comments>https://www.codecreators.ca/integrating-sharepoint-with-microsoft-flow/#respond</comments>
		
		<dc:creator><![CDATA[George Ali]]></dc:creator>
		<pubDate>Tue, 23 Apr 2019 20:46:35 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[SharePoint Migration & Workflows]]></category>
		<category><![CDATA[Custom SharePoint Workflows]]></category>
		<category><![CDATA[Microsoft flow integration]]></category>
		<category><![CDATA[SharePoint designer]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=3716</guid>

					<description><![CDATA[Microsoft Flow has grown considerably in the last couple of years and has become a serious competitor of SharePoint Designer. However, there have been some speculations about how it would eventually replace SharePoint Designer given that Microsoft Flow will be not be releasing any new versions of itself, according to the news. With recent announcements, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Microsoft Flow has grown considerably in the last couple of years and has become a serious competitor of SharePoint Designer. However, there have been some speculations about how it would eventually replace SharePoint Designer given that Microsoft Flow will be not be releasing any new versions of itself, according to the news. With recent announcements, it has become clearer how Microsoft Flow will replace <a href="https://www.codecreators.ca/sharepoint-workflows/" target="_blank" rel="noreferrer noopener">SharePoint Designer</a> and be integrated with SharePoint. Read more to find out!</p>



<p>Microsoft Flow connects with multiple services all at the same time. But since many business organizations that use <a href="https://www.codecreators.ca/sharepoint-online/" target="_blank" rel="noreferrer noopener">SharePoint online</a> regularly have started relying on automated business processes, this service has received quite a bit of attention. While trying to understand Microsoft Flow&#8217;s integration with SharePoint online, you must first know that Flow doesn&#8217;t only allow for custom flows to be created; it also is now permanently incorporated into new SharePoint lists and libraries. Further integration of the two was recently announced at a SharePoint conference.</p>



<p><h5><strong>Request a Sign-Off</strong></h5></p>



<p>With Microsoft Flow, you can create a simple request of approval of a particular SharePoint item or file in the library. All you have to do is follow the following steps.</p>



<p>1. Click on the drop-down menu <br>2. Click on <strong>Request Sign-off</strong><br>3. Choose the individual in your organization that will receive the sign-off request<br>4. Write an accompanying message<br>5. Click on <strong>Create Flow</strong><br>6. The sign off status will be automatically added to your list<br>7. When the item is pending, the sign-off status will show as <strong>Pending</strong></p>



<h3 class="wp-block-heading"><strong>Creating a Flow from a List or Library</strong></h3>



<p>Flows that are connected to a modern library or list will have the option to &#8220;Create a Flow&#8221; which will show you templates that can be incorporated directly onto the cloud with a SharePoint trigger. There will also be options to connect these flows with other apps besides SharePoint alone. You can choose a template that serves your business, but if you require customization, you can select a model that allows for it. After having selected a template, you will be redirected to <a href="https://www.codecreators.ca/microsoft-flow/" target="_blank" rel="noreferrer noopener">Microsoft Flow</a> where you can work on your flow and finalize it.</p>



<h4 class="wp-block-heading"><strong>What the Future Holds for Microsoft Flow and SharePoint</strong></h4>


<p>The integration of the two is expected to become even more prominent in the future. In the most recent SharePoint conference held in 2018, it was announced that built-in flow actions in SharePoint would invoke cognitive analysis in lists. This will allow for a more intelligent analysis of the content and explain whether the text contains positive feelings or negative feelings.</p>
<p><!-- /wp:post-content --></p>
<p><!-- wp:paragraph --></p>
<p>Flow and SharePoint together will also gain the automation of labeling as well as automate disposal of documents that are no longer essential. In addition to this, a new feature soon to be released is the out-of-the-box flow approvals for page publishing.</p>
<p><!-- /wp:paragraph --></p>
<p><!-- wp:paragraph --></p>
<p>Are you as excited for these integrations features as we are in 2019?</p>
<p><!-- /wp:paragraph --></p>]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/integrating-sharepoint-with-microsoft-flow/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create Custom Workflows in SharePoint</title>
		<link>https://www.codecreators.ca/how-to-create-custom-workflows-in-sharepoint/</link>
					<comments>https://www.codecreators.ca/how-to-create-custom-workflows-in-sharepoint/#respond</comments>
		
		<dc:creator><![CDATA[developers]]></dc:creator>
		<pubDate>Fri, 05 Apr 2019 23:23:29 +0000</pubDate>
				<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[SharePoint Migration & Workflows]]></category>
		<category><![CDATA[Custom SharePoint Workflows]]></category>
		<category><![CDATA[Custom Workflows]]></category>
		<category><![CDATA[SharePoint Workflows]]></category>
		<category><![CDATA[SharePoint workflows designer]]></category>
		<guid isPermaLink="false">http://codecreators.ca/?p=3691</guid>

					<description><![CDATA[For organization level collaboration and sharing, SharePoint is the best platform out there. Reading more into it might convince you that it is the right choice for you too! It is important to recognize that while using SharePoint, you will need to create custom workflows for any business process to initiate. There are several ways [&#8230;]]]></description>
										<content:encoded><![CDATA[<p style="text-align: justify;">For organization level collaboration and sharing, SharePoint is the best platform out there. Reading more into it might convince you that it is the right choice for you too! It is important to recognize that while using SharePoint, you will need to create custom workflows for any business process to initiate. There are several ways you can create a <a href="http://codecreators.ca/sharepoint-workflows/">custom workflow in SharePoint</a>. However, choosing the right option for you demands some thorough reading.</p>
<h4><strong>No Workflow</strong></h4>
<p style="text-align: justify;">Sounds confusing, right? If creating workflows seems like too much work for your organization, you can use the <strong>Alerts </strong>feature offered by SharePoint alongside metadata columns. Another option is to use a feature called <strong>Assigned To</strong> columns alongside a task list or an issues log which will give you the power to send emails to individual users you have assigned. In this section, you can alter several fields!  These fields include;</p>
<ul>
<li>Send Alerts To</li>
<li>Delivery Method</li>
<li>Change Type of Alert</li>
<li>Send Alerts For These Changes</li>
<li>When to Send Alerts</li>
</ul>
<h4></h4>
<h4><strong>Content Approval Feature </strong></h4>
<p style="text-align: justify;">You may also utilize the <strong>Content Approval </strong>feature already existing in SharePoint. Even though this feature only allows for content to flow one way and be approved, it can be a great help for simple approvals such as vacation requests and document checks. You can accept or reject such claims in this feature and add your comments regarding the reasoning for either approval or rejection. How convenient is that? If you ask us, plenty convenient!</p>
<h4><strong>Box Workflows</strong></h4>
<p style="text-align: justify;">With SharePoint, you also get in-built workflows to choose from.  These workflows are profoundly simple but also elaborate in many ways. With this feature you get access to the following;</p>
<ul>
<li>Approval of Workflows</li>
<li>Feedback Collection</li>
<li>Signature Collection</li>
<li>Deposition Approval</li>
<li>Three-state</li>
</ul>
<p>&nbsp;</p>
<p style="text-align: justify;">Though these workflows might not be very appealing and are not extremely customizable to your liking, they do tend to get the job done with the three-state workflow that gives you some options to choose from. These may include workflow state, task details, and email details.</p>
<h4><strong>SharePoint Designer Workflows</strong></h4>
<p style="text-align: justify;">If you are in store for flexibility in terms of customization in your workflows, <a href="http://codecreators.ca/sharepoint-workflows/">SharePoint Designer</a> is the right fit for you! This is a free tool offered by Microsoft itself that gives organizations the opportunity to create complex workflows that include parallel and multi-stage serial approvals across the entire business. The only downside to SharePoint Designer is that it takes some getting used to. However, once you familiarize yourself with the who’s and what’s of this type of workflows, it’s smooth sailing from there. If you have some time to invest, we recommend that you opt for SharePoint Designer.</p>
<p style="text-align: justify;">If none of the options above work for you, there are always third-party tools that you can use. The integration might be a little tricky but other than that; you&#8217;ll be good to go! However, keep in mind that with those, you might not get the kind of support that you&#8217;ll get with conventional workflow tools offered from Microsoft.</p>
<p>(Learn More About Our Custom Workflows)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codecreators.ca/how-to-create-custom-workflows-in-sharepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
