I have a Flow in an existing solution for which I need to create several variants. Ideally I would copy the flow and edit the copy.
Unfortunately the copies are created outside the solution and are not visible to import into the solution.
Any ideas on how to replicate a Flow inside of a Solution?
Thanks,
Brian
Solved! Go to Solution.
Yes you can but only way is to edit the xml files.
Follows the below steps:
Note: Before you do this take a backup copy of your existing solution.
1. Export the current solution
2. Once the solution is exported then unzip the current solution
3. You will see the following files and directory
4. Go to Workflows directory. Here you can see the flow json file.
5. Duplicate the flow file and rename to another filename and new GUID. To generate new GUID use this site https://www.guidgenerator.com/online-guid-generator.aspx
6. Once the file is copied and renamed with new GUID you will have two json flow files like below. Makes sure GUID must be capital case.
7. Next go to back to parent folder and open customizations.xml file
8. Copy and paste (duplicate) the workflow element. See below. Here the highlighted part is the first flow you created. Below you can see my new workflow node I copied. change the GUID's workflowID (Use the GUID you generated), Name and JsonFilename. Please be careful that all are case sensitive. So follow the same pattern as the first workflow where you copied form.
Save the file.
9. Next open the Solution.xml file
Duplicate the Root Component. Again the id is case sensitive. Use the same flow GUID as above.
Save the file
10. Finally Zip all the files.
12. Delete your existing solution. (Please take a backup copy of your solution).
13. Import the new zip solution.
Here is my result
If you need any help in this please let me know.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogSorry I know this is old but it might help someone.
Actually you can do it with Postman. Create a Skeleton destination flow (just through away steps in it) and save it.
In Chrome open the inspect window and navigate to the "network" tab and capture the PATCH post URL (we will use this in Postman) and Bearer token.
Go to the flow you want to copy and in Chrome open the inspect window and navigate to the "network" tab. Click the "Save" on it and capture the body of the Patch command (Request Payload - starts "properties:..).
Got to Postman and create a new Patch request (copying your Bearer token to the authentication) and past the body of the flow you want to copy. Lastly edit the "displayName" so it matches what you called the Skeleton flow.
Hit Post and the Flow should be be updated with the contents of the one you just copied.
Really ugly way of doing but its probably quicker than exporting the entire solution and updating it.
You might need to watch out for the only "16 connection limit" on one reference issue - if you get this open the Skeleton app and connect to CDS and create a new connection save it as before and examine the properties payload you will see the mentioned connection has changed name - copy this to the same field in the payload you want to test and you should be up and running.
Yes you can but only way is to edit the xml files.
Follows the below steps:
Note: Before you do this take a backup copy of your existing solution.
1. Export the current solution
2. Once the solution is exported then unzip the current solution
3. You will see the following files and directory
4. Go to Workflows directory. Here you can see the flow json file.
5. Duplicate the flow file and rename to another filename and new GUID. To generate new GUID use this site https://www.guidgenerator.com/online-guid-generator.aspx
6. Once the file is copied and renamed with new GUID you will have two json flow files like below. Makes sure GUID must be capital case.
7. Next go to back to parent folder and open customizations.xml file
8. Copy and paste (duplicate) the workflow element. See below. Here the highlighted part is the first flow you created. Below you can see my new workflow node I copied. change the GUID's workflowID (Use the GUID you generated), Name and JsonFilename. Please be careful that all are case sensitive. So follow the same pattern as the first workflow where you copied form.
Save the file.
9. Next open the Solution.xml file
Duplicate the Root Component. Again the id is case sensitive. Use the same flow GUID as above.
Save the file
10. Finally Zip all the files.
12. Delete your existing solution. (Please take a backup copy of your solution).
13. Import the new zip solution.
Here is my result
If you need any help in this please let me know.
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogProud to be a Flownaut!
Hi @Jcook
Thanks for the comment. Really appreciated it. Keep up the good work. I can see you doing well in this community sharing your knowledge.
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogProud to be a Flownaut!
Thanks @abm,
I was afraid that would be the answer. These Flows are part of a larger Model Driven App solution. So editing and replacing the solution is a little more involved. Does the content of the solution or whether it is managed/unmanaged make a difference to your workaround?
Thank you for the detailed directions.
Brian
I haven't checked the managed solution to extract and reconstruct the solution. It may be possible. Not sure that is supported or not?
Thanks
If you liked my response, please consider giving it a thumbs up
Proud to be a Flownaut!
Learn more from my blogAlso you can go to your flow click save as (a new copy will appear in "My flows") and add new flow to your solution.
@FIN wrote:Also you can go to your flow click save as (a new copy will appear in "My flows") and add new flow to your solution.
You would think it would be this easy. It would save a lot of time for larger projects. The copies are not available to me either when attempting to add them to my solution.
Now I see why I had this problem. So there is a list of known limitations (for example Button triggered flows are not available in solutions). So if you want to copy and import a flow you'll need to switch trigger (or anything else on the list) to be able to import it.
See:
So i created a solution and 2 flows:
Saved the copy:
And on add existing flows I see only Copy of - TestSaveAs - OneDrive
And i can add it.
So to be able to import existing flow you'll need to change/delete some steps.
Ah, good find.
In my case, I created the copy from a flow already in the Solution, so it didn't have any unsupported limitiations.
Sorry I know this is old but it might help someone.
Actually you can do it with Postman. Create a Skeleton destination flow (just through away steps in it) and save it.
In Chrome open the inspect window and navigate to the "network" tab and capture the PATCH post URL (we will use this in Postman) and Bearer token.
Go to the flow you want to copy and in Chrome open the inspect window and navigate to the "network" tab. Click the "Save" on it and capture the body of the Patch command (Request Payload - starts "properties:..).
Got to Postman and create a new Patch request (copying your Bearer token to the authentication) and past the body of the flow you want to copy. Lastly edit the "displayName" so it matches what you called the Skeleton flow.
Hit Post and the Flow should be be updated with the contents of the one you just copied.
Really ugly way of doing but its probably quicker than exporting the entire solution and updating it.
You might need to watch out for the only "16 connection limit" on one reference issue - if you get this open the Skeleton app and connect to CDS and create a new connection save it as before and examine the properties payload you will see the mentioned connection has changed name - copy this to the same field in the payload you want to test and you should be up and running.
Wow, this s/b the actual solution. Well done.
Awesome post @Welbywelb !
Proud to be a Flownaut!
Thanks Welbywelb!
Your solution worked great! Where you stated, "Click the "Save" on it and capture the body of the Patch command (Request Payload - starts "properties:..).", when I saved the file from Chrome Dev Tools, the double quotes were escaped by backslashes, that I had to remove (a simple find and replace).
In file saved from Chrome:
thx @Welbywelb for the fantastic workaround. I've added some more details including screenshots 🙂 The post is in german but this should be no problem. Klonen bzw. Kopieren von Power Automate Flows innerhalb von Solutions | applied technologies GmbH
Your article explains @Welbywelb solution in details! Precious! Thank you both!
The solution I found without exporting/reimporting the solution is to use "save-as" for the flow you're interested in. Then importing the new exported flow back into the solution. I'm always weary of deleting my solution and trying to reimport especially if it's a critical flow. I have seen odd issues over time and don't trust the solution import too much.
Has anyone tried this workaround and what has been your experience?
I really wish Microsoft would fix the "Save-As" and the "Clone" features so we can safely work/test our work. The "save-as" should just save the flow inside your solution if the flow is already inside, and not outside.
The "Clone" solution should clone the entire solution including flows and connection references (I read this article and made me scared to even try that feature: Solved: Clone Solution issue - Power Platform Community (microsoft.com) See also this for more info: Power Platform – Clone Solution | innovativeaj (wordpress.com)
Maybe MSFT will fix this in future releases. Hope MSFT is reading this blog 🙂
Hi Maxpower4522,
Very interested in this so I just tried to do a "save as" from within flow in a solution and the flow is placed in "My flows". If I try to "Add existing" ..."Cloud flow"-> "From Dataverse or Outside Dataverser" then the flow is not visible (I've assumed this is what you mean when you say "importing the new exported flow back into the solution") but perhaps there is another way to do it from inside a solution. FYI this was a "manually triggered flow" so this might be the issue.
Can you share the navigation steps you do which successfully imported a previously "save as"'d flow please if different from above?
Also what kind of flow trigger is used with within it?
FYI it appears that there are many reason for this not to work see - https://docs.microsoft.com/en-gb/powerapps/maker/data-platform/solutions-overview#known-limitations
This is the reason I provided my solution above which basically allows you cut and paste the code content for a any flow into a skeleton flow which you have created where you want it (inside a solution or not).
I totally agree that we shouldn't have to do this but until MS gets the finger out its the best solution I've found to date.
Thanks.
Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Dian Taylor, alongside the latest news, product reviews, and community blogs. Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.
Super Users – 2023 Season 1 We are excited to kick off the Power Users Super User Program for 2023 - Season 1. The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts. Super User Season 1 | Contributions July 1, 2022 – December 31, 2022 Super User Season 2 | Contributions January 1, 2023 – June 30, 2023 Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile. Power Apps Power Automate Power Virtual Agents Power Pages Pstork1* Pstork1* Pstork1* OliverRodrigues BCBuizer Expiscornovus* Expiscornovus* ragavanrajan AhmedSalih grantjenkins renatoromao Mira_Ghaly* Mira_Ghaly* Sundeep_Malik* Sundeep_Malik* SudeepGhatakNZ* SudeepGhatakNZ* StretchFredrik* StretchFredrik* 365-Assist* 365-Assist* cha_cha ekarim2020 timl Hardesh15 iAm_ManCat annajhaveri SebS Rhiassuring LaurensM abm TheRobRush Ankesh_49 WiZey lbendlin Nogueira1306 Kaif_Siddique victorcp RobElliott dpoggemann srduval SBax CFernandes Roverandom schwibach Akser CraigStewart PowerRanger MichaelAnnis subsguts David_MA EricRegnier edgonzales zmansuri GeorgiosG ChrisPiasecki ryule AmDev fchopo phipps0218 tom_riha theapurva takolota Akash17 momlo BCLS776 Shuvam-rpa rampprakash ScottShearer Rusk ChristianAbata cchannon Koen5 a33ik Heartholme AaronKnox okeks Matren David_MA Alex_10 Jeff_Thorpe poweractivate Ramole DianaBirkelbach DavidZoon AJ_Z PriyankaGeethik BrianS StalinPonnusamy HamidBee CNT Anonymous_Hippo Anchov KeithAtherton alaabitar Tolu_Victor KRider sperry1625 IPC_ahaas zuurg rubin_boer cwebb365 Dorrinda G1124 Gabibalaban Manan-Malhotra jcfDaniel WarrenBelz Waegemma drrickryp GuidoPreite If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances. Once they are received the list will be updated.
Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today. Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology. Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities. Click Here to Register Today!
We are excited to share the ‘Power Platform Communities Front Door’ experience with you! Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well. Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities. Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform. Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.
We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida. Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more. Register today: https://www.powerplatformconf.com/
User | Count |
---|---|
94 | |
35 | |
28 | |
25 | |
21 |
User | Count |
---|---|
122 | |
56 | |
42 | |
41 | |
41 |