Hi,
I have run into an issue with a flaky connector in a shared flow.
A bit of context: there are four components in play, 3 flows & 1 powerapp, which acts as a control-center of sort. In the app, data is entered by the user and the flows are run with that data. The 3 flows run sequentially (f1, f2, then f3), with each of them providing input for the subsequent flow. In Testing this whole construct for myself, I never experienced any kind of issue like this, the behaviour of the connector-actions was always consistent.
Now, to do a pilot-run of the whole thing, I shared both the 3 flows, as well as the PowerApp with a second user in our environment. Now the situation is as follows: If I run the whole thing, it uses my credentials to perform all the actions, it gets the files from my oneDrive, etc. When she runs it, it uses her credentials, uses her files etc. (as it should be).
However, in all of her runs, the action 'list rows present in a table' of the excel online for business connector is misbehaving. In the first flow it gets called with dynamically set inputs for Location, Document Library ID, FileID & TableID. The action works as expected and lists all the rows. This is done mostly to verify the dynamic inputs early.
In the third flow, the exact same action is used with the exact same inputs, but there she gets a 404.
As I mentioned, none of this happens when I run the flow. The Inputs are correct, I manually verified all of the IDs that are being used. I simply can't imagine what might cause such a behaviour.
The only thing that comes to mind is that for the third flow in her runs the excel connector somehow tries to access files on my oneDrive with IDs that have been identified (and verified in f1) on her oneDrive, so basically the connection not using her credentials but mine instead. I don't know however where I can check for such information and am quite generally at a loss as to what to do.
Any help, ideas or resources is very welcome
cheers,
JP
Solved! Go to Solution.
Hi Ricardo (@rimatos)
Thanks for responding and sorry for the late reaction on my part, hectic times.
Regarding the sequencing. No I am not using Child Flows. I am using context-variables to store the responses from the previous flows. in that response there is a property that tracks whether the flow is successful, and only once that property equals 'true', the next flow will be launched. So e.g. the command for f2 to run looks like this:
If(_f1_response.success = "true", UpdateContext({_f2_response: f2.Run(...)}))
I have sort of figured out what caused the problem but I am not sure how to interpret my findings. Let me give some context:
In my post here I described an issue where my flow f3 (the one acting up with the excel-connector) always got triggered 4 times when the chain of flows was initiated from my PowerApp.
To fix this I attempted all the suggested fixes like duplicating the flow, removing and readding the flow to the PowerApp etc. but nothing worked. The final thing I tried was the 'Concurrency Control' for the trigger of the flow. This fixed the issue with the flow triggering multiple times.
However, it seems to me that the 'Concurrency Control' somehow messes with Connections in shared flows and causes the problem I described in the initial post in this thread. I duplicated my flow f3 and nuked basically everything except the one action that caused problems. Still, the issue remained. I then tried turning off the 'Concurrency Control' again, which is not possible. I then was able to reproduce the Connection issue (working for me, not working for whoever I share the flow with) in a different Tenant with a number of simple flows (consisting each only of a single action that uses a connection) by turning on 'Concurrency Control'. So this is not limited to just the Excel-Connector.
I then, rather annoyed I might add, spent a couple of hours recreating the troublesome flow from scratch without 'Concurrency Control' on the trigger, not running into either my initial issue with the multiple-runs getting triggered, nor this issue with connections not working when shared.
So ultimately it looks to me that my "fix" for the initial issue caused this particular problem. I can't however say that I'm entirely satisfied with this result as I don't understand
and I would quite like to avoid this happening to future flows of mine.
So in a way this topic can be closed I guess, since I quite frankly neither have the knowledge nor the time to investigate this any further. Still, if this is a known problem or the cause for the quadruple-runs is clear, then I'd obviously love to know to avoid future problems.
best regards,
JP
Ok, I have done some experimenting with this on a tenant where I have access to multiple accounts. It seems that for whatever reason, when sharing the third flow, the connections don't switch over automatically from the "sharer's" connection to the connections of the person who received the flow (as can be seen in the screenshot, it doesn't use "my connections" from the point of view of the recipient of a shared flow).
This obviously is not exactly brilliant, as now all new recipients need to manually switch over all of their connections, which means that they either have to be guided through this or be given extensive instructions, as there are a lot of actions in this flow that use connections.
This is also not exclusive to Excel, as it turns out. It was just the first to be used and thus fail. All connections including Custom Connectors need to have their connections swapped.
If I had to make a guess I would say that this is either due to the size / complexity of the flow or alternatively due to the fact that the concurrency control of the trigger is set to 1 for this particular flow (seems less likely to me).
Therefore I have to wonder if anyone else has had a similar thing happen and if that is a known & expected behaviour.
cheers,
JP
Update: scratch my second comment. First off, none of the other shared flows switch connections over to the ones of the recipient and they still work. Second off, actually switching the connections manually only breaks things further.
Hi @JPMontoya ,
How are you ensuring that the Flows are being called in sequentially? Is it using Child Flows?
Additionally, would it be possible to show a screenshot of how you are inserting the data in the list rows action in the 3rd Flow which is misbehaving?
Regards,
Ricardo
Hi Ricardo (@rimatos)
Thanks for responding and sorry for the late reaction on my part, hectic times.
Regarding the sequencing. No I am not using Child Flows. I am using context-variables to store the responses from the previous flows. in that response there is a property that tracks whether the flow is successful, and only once that property equals 'true', the next flow will be launched. So e.g. the command for f2 to run looks like this:
If(_f1_response.success = "true", UpdateContext({_f2_response: f2.Run(...)}))
I have sort of figured out what caused the problem but I am not sure how to interpret my findings. Let me give some context:
In my post here I described an issue where my flow f3 (the one acting up with the excel-connector) always got triggered 4 times when the chain of flows was initiated from my PowerApp.
To fix this I attempted all the suggested fixes like duplicating the flow, removing and readding the flow to the PowerApp etc. but nothing worked. The final thing I tried was the 'Concurrency Control' for the trigger of the flow. This fixed the issue with the flow triggering multiple times.
However, it seems to me that the 'Concurrency Control' somehow messes with Connections in shared flows and causes the problem I described in the initial post in this thread. I duplicated my flow f3 and nuked basically everything except the one action that caused problems. Still, the issue remained. I then tried turning off the 'Concurrency Control' again, which is not possible. I then was able to reproduce the Connection issue (working for me, not working for whoever I share the flow with) in a different Tenant with a number of simple flows (consisting each only of a single action that uses a connection) by turning on 'Concurrency Control'. So this is not limited to just the Excel-Connector.
I then, rather annoyed I might add, spent a couple of hours recreating the troublesome flow from scratch without 'Concurrency Control' on the trigger, not running into either my initial issue with the multiple-runs getting triggered, nor this issue with connections not working when shared.
So ultimately it looks to me that my "fix" for the initial issue caused this particular problem. I can't however say that I'm entirely satisfied with this result as I don't understand
and I would quite like to avoid this happening to future flows of mine.
So in a way this topic can be closed I guess, since I quite frankly neither have the knowledge nor the time to investigate this any further. Still, if this is a known problem or the cause for the quadruple-runs is clear, then I'd obviously love to know to avoid future problems.
best regards,
JP
Thank you for the reply on this @JPMontoya , it was very informative.
The best i can advise as of now would be if you face any of these mentioned issues in your Flow to raise a Support ticket through https://admin.powerplatform.microsoft.com/support, so we can troubleshoot this in more detail and understand what can be causing the issue.
Unless we have a working repro of the issue and/or an error message to continue it is a sensitive issue to troubleshoot.
Hope this helps!
Regards,
Ricardo
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24 17 @Anil_g 7 @ManishSolanki 13 @eetuRobo 5 @David_MA 10 @VishnuReddy1997 5 @SpongYe 9JhonatanOB19932 (tie) @Nived_Nambiar 8 @maltie 2 (tie) @PA-Noob 2 (tie) @LukeMcG 2 (tie) @tgut03 2 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate @Deenuji 12@ManishSolanki 19 @Anil_g 10 @NathanAlvares24 17 @VishnuReddy1997 6 @Expiscornovus 10 @Tjan 5 @Nived_Nambiar 10 @eetuRobo 3 @SudeepGhatakNZ 8 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2 Anil_g2 SharonS2
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages