Dear all
I have a flow which is updating a Sharepoint List from an Excel file. Unfortunately the Owner field in the source is not maintained properly. having an user like firstname.name@company.com will be imported just fine in to the People field.
But if there is
the value can obviously not be resolved and it ends in this error:
{
"status": 400,
"message": "The specified user FREE TEXT NAME could not be found.\r\nclientRequestId: d071e7d1-fdfc-489e-92b3-ce713ea6d2fa\r\nserviceRequestId: d071e7d1-fdfc-489e-92b3-ce713ea6d2fa"
}
I can handle the empty fields as follows:
if(equals(items('Apply_to_each')?['Owner Contact'],''),null,items('Apply_to_each')?['Owner Contact'])
How can I do a check if the user will be resolved?
If it can not be resolved I'd like to have a specific user instead or at least null (an empty field)
Currently the 'wrong' data results in the error and none of the record will be saved.
Thank you very much for any hints/ideas.
Solved! Go to Solution.
I see your approach and I'm thankful for all your help Ellis, but I did not get it to run 😞
After some further tests I figured out another way. I guess both ways are talking double the time because of the additional validation. I think there is still room for improvement, but it is running now for me as follows:
if(equals(outputs('CheckUser')?['body/mail'],null),null,outputs('CheckUser')?['body/mail'])
Any thoughts/improvments?
If I have understood the question correctly, you could use the Get user Profile (V2) action to get the user's profile information from Azure AD.
You can use parallel branches to handle valid and invalid users. There will be one branch to handle a valid verified user and another branch for the "bad user" (user not found in AAD):
Configure the Bad User branch to run when the Get user Profile (V2) action fails:
Then set the following settings when both branches need to join up again: set this action to run if the above actions succeed or fail:
Example run-time for a "bad user":
Hope this helps
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
@ekarim2020 thank you very much. I guess that is what I need. Just not sure how to achieve it. I'm a bloody newbe.
Could you pleas elaborate the step: "Configure the Bad User branch to run when the Get user Profile (V2) action fails:"
What is the "actions(..)" need to be in the Inputs field please?
Thank you very much
The Compose action was there to help illustrate an example. You can enter any valid action for the "bad user action" such as sending an email to the user informing them that a bad email address was entered in the Excel file:
Hope this help.
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
ok thanks. I did that.
how do I join this parallel branches again to the "Final Operation"?
currently it takes about one second per entry to verify and add or update. I guess it will get even slower with this extra step. for now my flow looks as follows. Between Get user profile (v2) and Condition there will be the parallel branch in between.
This short gif animation should help:
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
I see your approach and I'm thankful for all your help Ellis, but I did not get it to run 😞
After some further tests I figured out another way. I guess both ways are talking double the time because of the additional validation. I think there is still room for improvement, but it is running now for me as follows:
if(equals(outputs('CheckUser')?['body/mail'],null),null,outputs('CheckUser')?['body/mail'])
Any thoughts/improvments?
I will give this some more thought. For now you can try:
(1) Use filter array action on the results (value) returns by (1) above to to filter out bad rows (eg. Owner contact)
Your IF expression wont then need to check for null email addresses.
Inside the Apply to each loop:
(3) Get items action - can you add any filter queries to select only the items you need in order to reduce the data set?
Let me know how you get go.
Ellis
The problem with the source data and the owner contact field is that this is a free text field and contains wrong or old email addresses, and sometimes just Text. Cleanup in the source is ongoing but far from done.
Therefore we have to validate every Owner Contact value.
Since the source file has about 3000+ records and probably only about 300 changed per day I'll see if I can do a comparison from the last two files and only take the changed (300) to process against sharepoint.
just not sure yet if this would be possible (or make sense) in Power Automate or with some other scripts (powershell) before running this flow.
the new job takes probably 3 instead of 1.5 hours. and since 90% is unchanged there is no need to process the whole file.
Can you add any data validation to the Excel file to reduce the amount of work needed to filter out bad addresses?
For example:
Email Address Format Validation in Excel & Google Sheets
https://www.automateexcel.com/how-to/email-validation/
Ellis
not feasible. I can get rid of the junk, but when an email address looks like it should "firstname.name@company.com" I still don't know if this is an active user, meaning whether it can be resolved or not. at a certain point in time I need to validate against a directory.
You could run a scheduled flow, say at midnight every night that reads the Excel files, searches for the email address in the AAD , then updates a new column in Excel (called ValidEmail) with valid or invalid.
Then your main flow could filter the Excel rows for ValidEmail = valid - and not bother searching for the email address in AAD. This would make the flow run much faster.
Ellis
hmmm, having them separated in two jobs would not change the total amount of time, so I do not see the benefit.
I'm checking if we can get from the source system an additional field "Modified" so we can easily just take all items modified within the last 24 hours since the last run. this would bring the job down to a few minutes.
The idea was to see if it is possible to run some of the time consuming tasks or preparation tasks out of hours. Then during office your flow will have a smaller dataset to process.
It's an excellent approach to get better data from the source!
Ellis
ahhh. That job can run every night at midnight for example. sot it should not be an issue if it takes 1 or 3 hours.
but when we have a modified date in the source we have the benefit to run this job ad hoc during the day if needed - just in a few minutes.
there is just one other issue I have. Records can be deleted in the source. for now my job is only creating and updating items in Sharepoint from Excel. I'm currently struggling to remove Sharepoint items which are no longer in the excel file.
Can you enable Concurrency on the Apply to each loop and see of that improves performance:
Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.
I tried that. Now it takes even longer. But I'm not sure if this is the cause for the time increase. I might have changed other things as well. Changing from manual trigger to scheduled, should not be the issue.
Is there a way to analyse what step takes how long and why? I mean I can see that reading the 3500 lines from excel takes about a minute and that the apply each step takes now 8 instead of 2 hours. but how can I get more detailed information about the process?
It was worth a try. Can you post the current flow you are using. There may be some simple step we can take to speed up the flow. The Get Items and CheckUser actions are going to be the bottlenecks for the flow.
Based on some older screenshots of your flow, is it possible to move the Get items action to the Yes branch of the condition? What is the filter query being used in the Get items?
Ellis
Can't move that because of some dependencies:
1B: - Pagination set to 5000
2B: Settings currently set to "Concurrency Controll" ON, Degree of Parallelism 20.
But this seams not to work, even get worse?
2C: Filter Query: CI_Name Equals "items('Apply_to_each')?['CI_Name']"
and Top Count = 1
2E: FinalUserName Inputs: "if(equals(outputs('CheckUser')?['body/mail'],null),null,outputs('CheckUser')?['body/mail'])"
2F: Condition: "length(outputs('Get_items')?['body/value'])" is not equal to 0
Hope you can see the mistake. Something is not correct.
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