cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Phillip-JCI
Helper I
Helper I

Problem Copying One SharePoint List to Another SharePoint List including all Attachments. Flow creates multiple entries.

Hi guys, I had posted this in the Flow Community hoping for help, but unfortunately either it doesn't have as many members as the PowerApps community, or no one has my use case? But its related to my PowerApps app. But I haven't gotten lucky on responses and suggestions didn't work. Unfortunately I need to resolve this asap, so I figured I'd try my luck here for better my odds.

 

On the PowerApps side, everything seems to work fine, my problem is how Flow is interacting with the PowerApps SharePoint List Submission.

 

Long story short; because I needed specific permissions on who can view the PowerApps submissions. The workflow is PowerApps writes to a Edit to end users SharePoint List; List 1 that everyone can see. That triggers a flow, which then essentially copies over that submission and it's attachments to a new SharePoint list; List 2 which is a list with my desired permissions then deletes the submission from List 1. The Submission in List 1 is working perfectly fine, and contains all attachments fine.

 

This was per @RezaDorrani suggestion to do this.

 

What I'd like is for that submission and more than 1 attachment to be copied over. And I am having all kinds of trouble with more than one attachment. The actual text values of the submission move over fine.

 

Also I would like those attachments to be also sent in the email that generated as well. Below is my entire Flow as is right now, I  tried playing with initialize array, and saving the attachments as an array but didn't work. I tried to breakdown everything as much as possible for clarity.

 

I think this would be a use case alot of users would need? So I am surprised at how confusing it seemingly being to do something fairly straight forward.

 

Perhaps any of you guys also may know?

@timl @RandyHayes @Shanescows @Meneghino 

 

Thanks!

 ----

I am attaching a complete breakdown of my current functional flow. It does not contain the initialize variable portion as of yet, because that was not working and this is a production environment, so I had to remove it, until we have something that is tested and working.

 

Pain Point:

Problem Copying One SharePoint List to Another SharePoint List including all Attachments. Flow creates multiple entries.

 

Environment:

There are two SharePoint Lists. MasterDB and Submissions. MasterDB is henceforth known also as List 1, and Submissions as List 2. The PowerApps applications writes to MasterDB. All data including attachments is saved correctly in MasterDB. Up to 10 attachments must be possible.

 

What I want to accomplish?

The Goal is to take a “entry” from MasterDB or List 1 and copy/transfer it over to Submissions or List 2, including transfer over any attachments embedded into that entry.

 

The reason this is necessary is because MasterDB has to have edit permissions in order for PowerApps to work correctly, however we do not want end users to have access to all the submissions, so Submissions or List 2 has special permissions attached to it, and thus entries need to be moved over.

 

Assumptions: PowerApps is able to write a SharePoint List entry into MasterDB including attaching any Attachments to that entry.

 

Microsoft Flow:

My Current Flow:

Master Flow Breakdown.png

 

When an Item is created in MasterDB (Triggers the flow)

Gets Attachment from that entry.

Now Checks whether there is an attachment or not, which splits the flow as a condition.

If Yes: The entry contains an attachment, it gets all the attachment content, creates an entry into Submissions or List 2. This entry is a copy of all the fields in MasterDB or List 1. Then adds the attachment(s) to the List 2 entry.

Deletes the MasterDB entry

In parallel Does these two actions;

  • Generates an Email from a Shared Mailbox that contains all the column fields in the entry for an end user.
  • Generates an Email from a Shared Mailbox to the Admin, or Myself that tells me that an entry has been created. It’s how I monitor that the process is working correctly.

If No: Creates an entry into Submissions or List 2. This entry is a copy of all the fields in MasterDB or List 1.

Then generates an Email from a Shared Mailbox that contains all the column fields in the entry for an end user. However the Dynamic Content Has Attachments, is false. This seems redundant from the shared email below also, but was working and not sending 2 emails, so I kept it.

Then In parallel Does these two actions;

  • Generates an Email from a Shared Mailbox that contains all the column fields in the entry for an end user.
  • Generates an Email from a Shared Mailbox to the Admin, or Myself that tells me that an entry has been created. It’s how I monitor that the process is working correctly.

 

What works?

If a Submission does not contain any attachments, the flow works successfully.

If a Submission contains one attachment only, the flow works successfully.

 

What’s broken?

If a Submission contains more than one attachment, the flow works however instead of putting all attachments into a single entry, it actually loops and creates the same entry multiple times, depending on how many attachments were in MasterDB or List 1. I.E There are two attachments in MasterDB, the flow triggers, and will create two identical entries into Submissions or List 2. The two identical entries, one will have attachment 1, and the second identical entry will have attachment 2, so the process is looping.

 

What’s missing?

I would like to add all the attachments likely via an Array to the Shared Mailbox emails. So that the end user receives the same attachments that are stored in the SharePoint List. I know this should be possible via array, but because of the looping attachment entry problem, I want to troubleshoot the flow, and then add that functionality.

 

Ideal Flow:

When an Item is created in MasterDB, (Trigger Flow)

Get all Content; both Column Entries and Attachments in this MasterDB Entry.

If there is an Attachment

Get Attachment Content,

Create an Entry into Submissions or List 2, that mirrors the MasterDB Entry.

Add all Attachments from MasterDB Entry, List 1 to Submissions Entry List 2.

Delete the MasterDB List 1 Entry, since its been essentially duplicated in Submissions List 2.

Send an Email from a shared mailbox to the End User with all the dynamic content fields that were contained in all the columns from this entry. Including Add to this email as an attachment, all the attachments that were in the MasterDB entry.

Then in Parallel

Send an Email from a shared mailbox to a specific admin, include the attachments from the MasterDB entry as well.

 

In simple terms. Take the MasterDB Entry, move it to Submissions. Send Admin Email that confirms entry with attachments if applicable, and Send an end user an Email with essentially a copy of the submission with attachments if applicable.

 

I am open to changing any part of the flow, I just need it to do this functionality. We are close, but far since that duplication issue and overall bugginess of the process.

 

Anyone feel free to chime in,

 

Thanks!

2 ACCEPTED SOLUTIONS

Accepted Solutions
rebeccas
Community Champion
Community Champion

For this you will need:

 

When an item is created

 

Create item

 

Delay (I would say about two min because it takes a while for attachments to get on)

 

Get item (yes, you need this even though you have the 'When an item is created')

 

Get attachments (make sure you have that s on there, from the 'Get item')

 

Inside Apply to each for 'Get attachments'

 

     Inside--   Get attachment content (Id is from 'Get item' and File Identifier is from 'Get attachments'

    Inside--    Add Attachment (Id is from 'Create item', File Name is the DisplayName of 'Get attachments' and File content is from the 'Get attachment content

 

Then you can add your additional steps that delete the original and anything else as a new step (outside the Apply to each) below here.

 

Having those two steps inside the 'Apply to each' should grab all the attachments fine. If you notice it missing one of them or something you may add a little more time onto your delay.

 

Hope this helps!

 

 

 

View solution in original post

For this you need to do (after the 'Get attachments' is fine)

 

Initialize variable (Name: AttachmentArray, Type: Array)

 

Inside your same 'Apply to each' (just put after the 'Add attachment')

 

'Append to array variable'

Name: AttachmentArray

Value:

{

"Name": DisplayName, <-- for this you can click the dynamic content of your Get attachments

"ContentBytes": body('Get_attachment_content')['$content'] <-- this you will not click, you will have to do in the Expression part

}

 

Then on the email part you will click that icon on the right side that makes it one line instead of two at the attachments and then select the 'AttachmentArray' variable.

 

 

 

 

Let me know if you have any trouble...I think that is all.

 

 

 

 

View solution in original post

5 REPLIES 5
timl
Super User
Super User

Hi @Phillip-JCI 

Thanks for tagging me, and for your detailed explaination.

Unfortunately, this is an area that I'm not overly familiar with. I hope one of the SharePoint gurus here can quickly answer your question.

Alternatively, maybe one of the offical Microsoft people here can reseach an answer for you - Kris, can you help out here? @v-xida-msft 

rebeccas
Community Champion
Community Champion

For this you will need:

 

When an item is created

 

Create item

 

Delay (I would say about two min because it takes a while for attachments to get on)

 

Get item (yes, you need this even though you have the 'When an item is created')

 

Get attachments (make sure you have that s on there, from the 'Get item')

 

Inside Apply to each for 'Get attachments'

 

     Inside--   Get attachment content (Id is from 'Get item' and File Identifier is from 'Get attachments'

    Inside--    Add Attachment (Id is from 'Create item', File Name is the DisplayName of 'Get attachments' and File content is from the 'Get attachment content

 

Then you can add your additional steps that delete the original and anything else as a new step (outside the Apply to each) below here.

 

Having those two steps inside the 'Apply to each' should grab all the attachments fine. If you notice it missing one of them or something you may add a little more time onto your delay.

 

Hope this helps!

 

 

 

Hi @rebeccas , thank you for your input, it worked perfectly. I have just one more minor add that hopefully you can help. I'd like to attach the attachments to the email. To my understanding and research, I have to do it as an array. My flow failed.

 

This is the structure of the failed one. If I remove Initialize Variable and Append to array variable. Then it works as your described.

 

Do you have an idea how I can add it to the email that is sent to outlook? This was my understanding how to do it, but I'd imagine my Append to array variable is either in the wrong position, or wrongly formatted.

 

Thanks!

Flow Test 2.png

 

Thanks!

For this you need to do (after the 'Get attachments' is fine)

 

Initialize variable (Name: AttachmentArray, Type: Array)

 

Inside your same 'Apply to each' (just put after the 'Add attachment')

 

'Append to array variable'

Name: AttachmentArray

Value:

{

"Name": DisplayName, <-- for this you can click the dynamic content of your Get attachments

"ContentBytes": body('Get_attachment_content')['$content'] <-- this you will not click, you will have to do in the Expression part

}

 

Then on the email part you will click that icon on the right side that makes it one line instead of two at the attachments and then select the 'AttachmentArray' variable.

 

 

 

 

Let me know if you have any trouble...I think that is all.

 

 

 

 

Thanks @rebeccas ,

 

Your solution worked as intended, and I am able to launch my platform. I really appreciate you help.

 

When I saved it, it created an extra apply to each, which I used "value" inside the body, and seems to work fine. Not sure if I should change that or not.

 

To pass it forward here's a copy of my working flow guys, so hopefully if you run into this use case, you won't go crazy as I did looking for a solution.

 

Thanks!

 

Flow Final Example.png

Helpful resources

Announcements

Tuesday Tip | How to Provide Feedback

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We are always looking to improve your experience on our community platform, and your feedback is invaluable to us. Whether it's a suggestion for a new feature, an idea to enhance the platform, or a concern you'd like to address, we want to hear from you!   How to Share Your Feedback: Each of our communities has its own Feedback forum where the Community Managers can assist you directly in.  ●  Power Apps  ● Power Automate   ● Power Pages   ● Copilot Studio   We also have many articles on community account FAQs, or how to navigate the community, which can be found below.   Community Accounts & Registration:  https://powerusers.microsoft.com/t5/Community-Accounts-Registration/tkb-p/pa_community_accounts_regi...   Using the Community: https://powerusers.microsoft.com/t5/Using-the-Community/tkb-p/pa_using_the_community   Our Commitment to You: We are committed to creating a collaborative and supportive environment. All feedback is reviewed by our community managers, and we strive to implement changes that will benefit all members.   Thank you for being a part of our community. Your contributions help us grow and improve together!

Copilot Cookbook Challenge | Win Tickets to the Power Platform Conference

We are excited to announce the "The Copilot Cookbook Community Challenge is a great way to showcase your creativity and connect with others. Plus, you could win tickets to the Power Platform Community Conference in Las Vegas in September 2024 as an amazing bonus.   Two ways to enter: 1. Copilot Studio: https://aka.ms/CS_Copilot_Cookbook_Challenge 2. Power Apps Copilot Cookbook Gallery: https://aka.ms/PA_Copilot_Cookbook_Challenge   There will be 5 chances to qualify for the final drawing: Early Bird Entries: March 1 - June 2Week 1: June 3 - June 9Week 2: June 10 - June 16Week 3: June 17 - June 23Week 4: June 24 - June 30     At the end of each week, we will draw 5 random names from every user who has posted a qualifying Copilot Studio template, sample or demo in the Copilot Studio Cookbook or a qualifying Power Apps Copilot sample or demo in the Power Apps Copilot Cookbook. Users who are not drawn in a given week will be added to the pool for the next week. Users can qualify more than once, but no more than once per week. Four winners will be drawn at random from the total qualifying entrants. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once. If they are drawn multiple times, another user will be drawn at random. Prizes:  One Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value, does not include travel, lodging, or any other expenses) Winners are also eligible to do a 10-minute presentation of their demo or solution in a community solutions showcase at the event. To qualify for the drawing, templates, samples or demos must be related to Copilot Studio or a Copilot feature of Power Apps, Power Automate, or Power Pages, and must demonstrate or solve a complete unique and useful business or technical problem. Power Automate and Power Pagers posts should be added to the Power Apps Cookbook. Final determination of qualifying entries is at the sole discretion of Microsoft. Weekly updates and the Final random winners will be posted in the News & Announcements section in the communities on July 29th, 2024. Did you submit entries early?  Early Bird Entries March 1 - June 2:  If you posted something in the "early bird" time frame complete this form: https://aka.ms/Copilot_Challenge_EarlyBirds if you would like to be entered in the challenge.

May 2024 Community Newsletter

It's time for the May Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.        COMMUNITY HIGHLIGHTS Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzcreativeopinionExpiscornovusFubarAmikNived_NambiarPstork1OliverRodriguesmmbr1606ManishSolankiMattJimisonragavanrajantimlSudeepGhatakNZrenatoromaoLucas001iAm_ManCatAlexEncodianfernandosilvaOOlashynJmanriqueriosChriddle  BCBuizerExpiscornovus  a33ikBCBuizer  SebSDavid_MA  dpoggermannPstork1     LATEST NEWS   We saw a whole host of amazing announcements at this year's #MSBuild, so we thought we'd share with you a bite sized breakdown of the big news via blogs from Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab, and ✊🏾Justin Graham :   New ways of development with copilots and Microsoft Power PlatformRevolutionize the way you work with Automation and AIPower Apps is making it easier for developers to build with Microsoft Copilot and each otherCopilot in Microsoft Fabric is now generally available in Power BIUnlock new levels of productivity with Microsoft Dataverse and Microsoft Copilot StudioMicrosoft Copilot Studio: Building copilots with agent capabilitiesMicrosoft Power Pages is bringing the new standard in secure, AI-powered capabilities   If you'd like to relive some of the highlights from Microsoft Build 2024, click the image below to watch a great selection of on-demand Keynotes and sessions!         WorkLab Podcast with Charles Lamanna   Check out the latest episode of the WorkLab podcast with CVP of Business Apps and Platforms at Microsoft, Charles Lamanna, as he explains the ever-expanding evolution of Copilot, and how AI is offering new opportunities for business leaders. Grab yourself a coffee and click the image below to take a listen.       Event Recap: European Collaboration and Cloud Summits 2024   Click the image below to read a great recap by Mark Kashman about the recent European Collaboration Summit and European Cloud Summit held in Germany during May 2024. Great work everybody!       UPCOMING EVENTS European Power Platform Conference - SOLD OUT! Congrats to everyone who managed to grab a ticket for the now SOLD OUT European Power Platform Conference, which takes place in beautiful Brussels, Belgium, on 11-13th June. With a great keynote planned from Ryan Cunningham and Sangya Singh, plus expert sessions from the likes of Aaron Rendell, Amira Beldjilali, Andrew Bibby, Angeliki Patsiavou, Ben den Blanken, Cathrine Bruvold, Charles Sexton, Chloé Moreau, Chris Huntingford, Claire Edgson, Damien Bird, Emma-Claire Shaw, Gilles Pommier, Guro Faller, Henry Jammes, Hugo Bernier, Ilya Fainberg, Karen Maes, Lindsay Shelton, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more, it looks like the E in #EPPC24 stands for Epic!   Click the image below for a full run down of the exciting sessions planned, and remember, you'll need to move quickly for tickets to next year's event!       AI Community Conference - New York - Friday 21st June Check out the AI Community Conference, which takes place at the Microsoft Corporate building on Friday 21st June at 11 Times Square in New York City. Here, you'll have the opportunity to explore the latest trends and breakthroughs in AI technology alongside fellow enthusiasts and experts, with speakers on the day including Arik Kalininsky, Sherry Xu, Xinran Ma, Jared Matfess, Mihail Mateev, Andrei Khaidarov, Ruven Gotz, Nick Brattoli, Amit Vasu, and more. So, whether you're a seasoned professional or just beginning your journey into AI, click the image below to find out more about this exciting NYC event.       TechCon365 & Power Platform Conference - D.C. - August 12-16th ** EARLY BIRD TICKETS END MAY 31ST! ** Today's the perfect time to grab those early bird tickets for the D.C. TechCon365 & PWRCON Conference at the Walter E Washington Center on August 12-16th! Featuring the likes of Tamara Bredemus, Sunny Eltepu, Lindsay Shelton, Brian Alderman, Daniel Glenn, Julie Turner, Jim Novak, Laura Rogers, Microsoft MVP, John White, Jason Himmelstein, Luc Labelle, Emily Mancini, MVP, UXMC, Fabian Williams, Emma Wiehe, Amarender Peddamalku, and many more, this is the perfect event for those that want to gain invaluable insights from industry experts. Click the image below to grab your tickets today!         Power Platform Community Conference - Sept. 18-20th 2024 Check out some of the sessions already planned for the Power Platform Community Conference in Las Vegas this September. Holding all the aces we have Kristine Kolodziejski, Lisa Crosbie, Daniel Christian, Dian Taylor, Scott Durow🌈, David Yack, Michael O. and Aiden Kaskela, who will be joining the #MicrosoftCommunity for a series of high-stakes sessions! Click the image below to find out more as we go ALL-IN at #PPCC24!       For more events, click the image below to visit the Community Days website.                                            

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Top Solution Authors
Top Kudoed Authors
Users online (1,965)