cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
JimSutt
Advocate II
Advocate II

List of all direct reports and subordinates

I'm trying to build a Power Automate flow that will output a list of all every user that reports (both directly and indirectly) to a manager user ID (input).  I have tried to use the "Office 365 Users.Get direct reports" action, save the output to an array variable, and then loop through that array with the same "Get direct reports" action to return the next layer of users.  When finished, I would append all these lists together for a single complete list of all direct and indirect reports.

 

My issue is there could be 5+ layers of management in the organization, so I would like the flow to keep digging into each user until the "Get direct reports" returns nothing.  There has to be a simpler method than essentially an infinite number of embedded loops!

1 ACCEPTED SOLUTION

Accepted Solutions

@-Alex- I'm sorry that you feel the title of this post is misleading.  I can assure you that the goal of this post is to get a list of all direct reports and indirect reports.  Here is a full image of the entire flow updated to use "Configure run after".  For the way the Office365 profiles are configured in my organization, the flow below works perfectly.  The logic in the "Filter Array" step is optional and is my attempt to exclude certain roles.  I hope this helps.

 

2022-10-21 14_15_50-Office365GroupMgmt-Full-w-Call-outs.png 

View solution in original post

93 REPLIES 93
ChristianAbata
Most Valuable Professional
Most Valuable Professional

Hi @JimSutt  you can use do ultil.

In my example I look into json response many time unless the answer is empty

doultil.PNG



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Power Automate examples: Power Automate examples
v-bacao-msft
Community Support
Community Support

 

Hi @JimSutt ,

 

Maybe you could consider using Do until to meet your needs.

 

Please consider sharing the current Flow configuration so that we can try to apply Do until to your Flow.

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
JimSutt
Advocate II
Advocate II

Hi @ChristianAbata and @v-bacao-msft ,

I used your feedback and reconsidered my approach.  Below is what my process looks like thus far. 

 

My approach is as follows:

  1. Prompt for manager's email
  2. Get manager's profile (email, name, job title)
  3. Initialize an array and add the manager's profile to first line of array
  4. Loop through the array, appending the manager's direct reports to the array.  As the array grows, the intent is the loop will keep evaluating the direct reports of each user, and continue to append the full-time users to the end of the array. 

Currently, the main loop does not continue to process newly added users to the array, only the original.  Is there a way to continue to loop through the array as it grows?

Office365GroupMgmt2-1.png

 

Office365GroupMgmt2-2.png

 

Office365GroupMgmt2-3.png

 

Office365GroupMgmt2-4.png

 

 

Note that I did not use the "Do Until" loop as I don't want the loop to stop when it hit the first user with no direct reports.  I want to keep building the list of direct reports and checking each one for additional reports.  I hope that makes sense.  I wonder if I need to use a different style of loop in order to loop through an array that is expanding.

tootuff
Regular Visitor

I am also trying to accomplish this. Is there any update from Microsoft on a possible solution?

Successfully implemented the logic using the Do Until function (see screenshots) and a counter.  It appears the Apply To Each loop only processes the rows of the array present at the START of the loop and ignores rows appended to the array during the loop.  

The Do Until loop does not use the array as an input, but rather compares a simple counter to the size of the array.  Since the array is initialized with 1 row and the counter is initialized at 0, the loop will continue to process the array until the counter catches up to the size of the array, which is re-evaluated each iteration of the loop.  

*Note:  The Get Direct Reports function returns inactive users, so my next course of action (not shown here) will be to ignore those records.  

Office365GroupMgmt3-1.pngOffice365GroupMgmt3-2.pngOffice365GroupMgmt3-3.pngOffice365GroupMgmt3-4.pngOffice365GroupMgmt3-5.png

I would really appreciate some help.  I cannot figure out the variables used in the JSON Parse Content field in your screen shots.    I know I want the data from the items we stored in the array, I am just not sure how to get them.   Any advice?

Hello @mikeyroth, the following is the code in the "Content" field of the Parse JSON step:

 

variables('FinalArray')[variables('ArrayCounter')]

 

The output of this step will give us the components of the object array for the current row, which we can then reference the "mail" element to pass into "Get direct reports (V2)".  If you need it, the following is the Schema used in the Parse JSON step:

 

{
    "type": "object",
    "properties": {
        "Mail": {
            "type": "string"
        },
        "DisplayName": {
            "type": "string"
        },
        "JobTitle": {
            "type": "string"
        },
        "AccountEnabled": {
            "type": "boolean"
        }
    }
}

 

Hopefully this addresses your question.  If you need more help, please let me know.

@JimSutt   Thanks  I got it to run!   I found I had to change the limit of the do until to get all of the reports, but it did work.  Did you ever get where you could filter those accounts that were not enabled?

Hi @mikeyroth , I'm glad you were able to get the flow to run.  Good catch with the loop limiter.  In order to filter out the disabled accounts, you will need to include "accountEnabled" field from the "Get direct reports (V2)" step.  After the "Get direct reports (V2)" step, add the "Filter array" step to only keep the records where accountEnabled = true.  You can also update the Select statement within your Do Until loop to save the value of the accountEnabled field (useful for testing to ensure you're only returning the correct values!)  The following is my updated steps immediately after "Get direct reports (V2)": 

 

Office365GroupMgmt0-Filter.png

 

The "Filter array" in advanced mode will look like:

@equals(item()?['accountEnabled'], true)

 

failed append array.jpg

 

@JimSutt   I thought I had it running, but apparently it wasn't doing what I wanted.  Any idea why it would fail to append the array?   It's interesting, because the item show up in the output of the csv table, but not all items.    I showed a sample above, removed the names and items for privacy.   Please advise what I might be doing wrong.  

 

And just to clarify, is length(variables('FinalArray')) the right variable for the do Until compare to the array counter?

 

Thanks so much for your help

@mikeyroth my guess is your "Append to array variable" step is outside of one of the two loops.  Your outer loop should be your Do Until loop, which has an input of a specific row of FinalArray.  Within that Do Until loop is an "Apply to each" loop, in which the output of "Get direct reports" is appended to the FinalArray variable. 

--Do Until loop
|
|  Get direct reports
|
|  --Apply to each loop
|  |
|  |  Append to array
|  |
|  --
|
--

 

Also, make sure that you initialized your counter variable with a value of 0 (zero).  

After you confirm all this, if you're still having the problem, go ahead and add screenshots of your flow, and I'll try to help troubleshoot further.

@mikeyroth 

Yes, your formula for the Do Until statement is accurate.  Assuming you're using the same variable names, if you edit the statement in advanced mode it should read:

@equals(variables('ArrayCounter'), length(variables('FinalArray')))

 

@JimSutt   It looks right to me, but not sure.  I did initialize counter before do until

DO until.jpg

@mikeyroth it looks like you're incrementing your counter within the "Apply to each" loop.  Move it outside of that loop.  It should be the last step of the "Do until" loop.  

Office365GroupMgmt-mikeroth.png

@JimSutt   That did the trick.    Thank you.   I also had to add in the Parse JSON    Type:["string","null"] on everything but the email, as I had some with null records in location.   

 

I sure do appreciate your help!  

antonyclark
Frequent Visitor

@mikeyroth  and @JimSutt would one of you guys please OneDrive or other fileshare the final working Flow?

 

You've done great work figuring out the solution to a widely re-usable solution and I don't want to re-invent the wheel or try to cobble together something from all your screen-shots.

 

Thank you very much in advance for your hard work on this generalized problem.

@antonyclark , I'm not able to save off the flow without identifying information from my company, which I'm not permitted to share.  Is there something in the screenshots that you have questions about?  

Thanks for the quick response Jim. I am confused about which of the posts actually details the working solution.

Is it the one marked as Accepted Solution? Could you link to the one post I should follow to completely recreate the Flow from scratch?

Thank you in advance 🙂

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

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!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

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  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

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.    

Updates to Transitions in the Power Platform Communities

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