Category Archives: Power Automate
Set multiple not resolved Email Ids as To Party CC Party & Bcc Party in D365 Email Message records using Cloud flows
Many a time it happens that we need to send emails that may be an email notification etc. to clients, with the power automate capabilities we can schedule, trigger, manually run, and do want not to automate these notification emails. But the road blocker to all of these is not resolved email IDs, i.e. email … Continue reading Set multiple not resolved Email Ids as To Party CC Party & Bcc Party in D365 Email Message records using Cloud flows
Share Story :
Get Option Set Labels in Power Automate flows
Every Option set Option has two Values associated with it : Label Value – which is a free text field. Value – Which is an integer value as In any Power Automate flow by default, we only get the integer value of an Option Set Option. In this blog let’s see we can get a … Continue reading Get Option Set Labels in Power Automate flows
Share Story :
Get year from Current date & Time function in Cloud Flows
We wanted to get the current year but there is no direct expression only to get the year. Below is the solution where we get the current year. Use formatDateTime function function with Utcnow(). Below is the expression we used. formatDateTime(utcNow(),’yyyy’) Output – Expression to get current date formatDateTime(utcNow(),’dd’) 2. Expression to get the current … Continue reading Get year from Current date & Time function in Cloud Flows
Share Story :
Creating Custom Connector for Shopify in Power Automate- Part 2
In Part 1, we created a Custom connector for Shopify and added One Action to retrieve customer data. In this blog we will add more Actions to our Shopify Connector. Actions: Create Customer Update Customer Retrieve all the products Create a new Action to create a new customer and repeat the steps as done in the … Continue reading Creating Custom Connector for Shopify in Power Automate- Part 2
Share Story :
Creating Custom Connector for Shopify in Power Automate- Part 1
In this blog we’ll learn how to create a custom connector for Shopify using Power Automate. Go to Apps and click on “Manage Private Apps” 2. Create on “Create private app” 3. Provide app name and email 4. Give permissions based upon your requirements No Access Read Access Read and write 5. Click on Save … Continue reading Creating Custom Connector for Shopify in Power Automate- Part 1
Share Story :
Dynamically storing MS Forms Drop down field values into D365 CRM Option Set using Power Automate Flow
MS Forms offers a functionality to create a dropdown field which is similar to an option set fields in D365 CRM, But when it comes to mapping or storing values between these two field things become a bit tricky. However there are a few workaround using power automate capabilities. In this blog let’s see how … Continue reading Dynamically storing MS Forms Drop down field values into D365 CRM Option Set using Power Automate Flow
Share Story :
Creating HTML table using Power Automate
The Create HTML Table action in Power Automate is a useful tool, but lacks any formatting or styling options. In this blog, we’ll see how to create a HTML table in Power Automate. Use Case: When quote is marked as won, close opportunity as won and send Email to the owner of the Opportunity with below details – Email Subject … Continue reading Creating HTML table using Power Automate
Share Story :
Parallel Branching in Cloud Flow
At times, if there are some operations which your Flow wants to perform while it waits to get back, it’s best to use Parallel Branching in Flows. Here’s a quick tip on it! Scenario Some Flows need you to include Approvals or Adaptive Cards that halt the execution of the Flow until the Response from … Continue reading Parallel Branching in Cloud Flow
Share Story :
Understanding Primary Key notations in Dataverse connector in Power Automate
In case it’s your first time creating a Cloud Flow using Dataverse connector and dealing with Primary Key of the Activity Type of entity, here’s a quick tip to keep in mind. Normal Entity As a creator for Flow, let’s say you have listed Records of an entity called as Accounts (out-of-the-box), you’ll notice that … Continue reading Understanding Primary Key notations in Dataverse connector in Power Automate
Share Story :
Create attachments in SharePoint when email arrives
Use case – we wanted to retrieve attachment when new email arrives in outlook and create same file in SharePoint Let see how we can achieve this! Step 1 – Flow triggers on when a new email arrives trigger from Outlook connection. Step 2 – Retrieve attachments and Create file in SharePoint. Add step create … Continue reading Create attachments in SharePoint when email arrives