cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MoEdu
Helper III
Helper III

Create unique reference ID

I have a column name ReferenceID on a SP list, what I would like to do is each time an item is created in list A for the referenceID to be auto generated as ABC1 ABC2 ABC2 and so forth

 

This is part of a bigger flow which I am building which is as follows:

 

1. when an item is created in list A create in list B

2. when an item is modified in list B update list A

 

Could anyone kindly explain how I can achieve this in flow?

21 REPLIES 21
abm
Most Valuable Professional
Most Valuable Professional

Hi @MoEdu 

 

You need to use two flows to meet your requirement.

 

Flow 1. When an item is created
Flow 2. When an item is created or modified. Microsoft Power Automate does not support a trigger for when an item is modified only currently. So here you need to implement your own logic. Just an idea may be checking the created and modified date is same or not.

 

To generate the Id you need to get the latest record based on created on date from sharepoint. Find the reference id and increment to next number. Here you need to use some string manipulations to extract the number.

 

If you need any further help please let me know.

 

Thanks



Did I answer your question? Mark my post as a solution!

If you liked my response, please consider giving it a thumbs up


Proud to be a Flownaut!

Learn more from my blog
Power Automate Video Tutorials
v-bacao-msft
Community Support
Community Support

 

Hi @MoEdu ,

 

It is recommended that you directly append the Item ID to the back of AB to create the reference ID. The Item ID is the unique and non-null field, so the reference ID will also be.

 

You could refer to the following methods to configure these two flows.

129.PNG

Flow 2:

130.PNG131.PNG

Hope this helps.

 

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.

Hi @v-bacao-msft

 

I have followed your steps and it works like a charm! thank you very much! 😀

 

I have noticed once the item is created in list A it is copied over to list B which is fine however if further updates are carried out in list A these do not appear in list B

 

How can I ensure any subsequent updates to list A appear in list B?

 

also I forgot to mention attachments in my post

 

If attachments are added in list A these should also appear in list B

 

Once in list B if list B is updated/modified and if further attachments are added or the existing ones deleted will this also be reflected in list A?

 

And  if no attachments are added in list A but are added in list B will these appear in list A

 

Could you kindly provide an example how I could achieve this?  

 

Hi @MoEdu ,

 

“further updates are carried out in list A these do not appear in list B

How can I ensure any subsequent updates to list A appear in list B?“

 

If the update of List A is also synchronized to List B, then Flow will fall into a loop. Because there is an Update item action in Flow, Flow will be triggered again, which will cause many errors. I don't think this requirement can be realized through Flow.

 

For adding attachments, you can do this through the following methods.

Flow 1:

152.PNG

Flow 2:

153.PNG

Hope this helps.

 

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.

Hi @v-bacao-msft 

 

Is there no other solution within flow that I could use? i.e if item is modified in list A update list B

 

I'll detail out my requirements as you may have another solution

 

If item is created in list A it should appear in list B inc attachments

If item in list A is modified these should appear in list B inc attachments

If item in list B is modified these should appear in list A inc attachments

 

So to summarise, any item that is created in list A should appear in list B including any changes made after the list is saved from list A.

 

Any changes list B does should appear in list A

 

I hope that makes sense

 

Hi @MoEdu ,

 

Unfortunately, although I would like to provide you with the right ones, relying on the current features of Flow cannot achieve such requirements, they will always fall into the loop.

 

Maybe someone else has the right method. I am not able to provide you with the right method for the time being.🤔

 

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.

Hey @v-bacao-msft @MoEdu 

Just checking the issue... I assume you trying to avoid event recursion where the Flows are essentially triggering each other?

If so check out this blog post which details what you need to do: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/SharePoint-Managing-Recursive-Even...

Cheers Jay

Hi @Jay-Encodian 

 

I have SP list A, anything that is created in SP list A should appear in list B

 

Only new items that are created appear in list B, so for example if you were to edit an item in list A make changes etc and then click save these do not appear in list B

 

And the final step is once the item is in list B any updates that are carried out in list B should then appear in list A

 

I hope this makes sense, the example you provided in the link will I need to create this as a new flow or add it in to the example @v-bacao-msft provided?

 

look forward to hearing from you

Hey@MoEdu 

This should be pretty simple:

For the Flow (Flow A) on List A: use the 'When an item is created' SharePoint trigger

For the Flow (Flow B) on List B: use the 'When an item is created or modified' SharePoint Trigger

The slight issue is that the Flow on List B will be triggered by Flow A ... to work around the item created event, enable list versioning on List B and add a condition to check whether the current version of the triggered item is equal to '1.0', if it is then terminate the Flow, if it isn't it must be change and then you can perform your logic.

The final thing to consider... you need a way to correlate the item in List A with the item in List B; I would suggest you create a column on List B called 'List A ID' or similar and then populate this field with the List A item ID... that way you can ensure you can get the correct list item from List A when Flow B is triggered.

HTH

Jay

Hi @Jay-Encodian 

 

I've already built the flows as per the example provided by @v-bacao-msft 

 

The only step that is missing which I am looking for is if any changes that are carried out to list A after being saved should also appear in list B

 

Would I need to start from scratch or do I need to insert in additional steps?

 

I would appreciate if you could provide screenshots as I am new to flow

Hi @MoEdu 

Can you clarify please;

Your previous response stated:

"Only new items that are created appear in list B, so for example if you were to edit an item in list A make changes etc and then click save these do not appear in list B"

And you last

"The only step that is missing which I am looking for is if any changes that are carried out to list A after being saved should also appear in list B"

Those are contradicting statements?

Thanks J

Hi @Jay-Encodian 

 

So at the minute the flow works as follows

 

if item is created in list A it appears in list B including attachments, which will have a reference ID against it

 

If the item is updated in list B then this change is also reflected in list A

 

All this is fine, however if a user who created the item in list A then decided to modify the item list, make changes these do not appear in list B

 

Hope that helps

 

 

 

 

 

@MoEdu 

You're using the 'When an item is created' trigger... therefor the Flow will only fire when an item is added to List A.

If you want the Flow to run on updates to List A you need to use the 'When an item is created or modified' trigger action.

Cheers J

Hi @Jay-Encodian 

 

That's what I thought would do the trick change the flow to when an item is created or modified

 

however @v-bacao-msft advised the following which would cause conflict

 

If the update of List A is also synchronized to List B, then Flow will fall into a loop. Because there is an Update item action in Flow, Flow will be triggered again, which will cause many errors. I don't think this requirement can be realized through Flow.

Hi @MoEdu 

It's fine... you just have to implement a way to avoid recursion.

You basically have two lists duplicating data... with two Flows (I assume) being triggered which then implement the changes between the two lists.

I would suggest you create a service account and set SharePoint 'Create' and 'Update' actions to use the service account identity in the connection.

You can then add a condition to check which user triggered the change... it it's the service account you simply terminate the Flow stopping the endless loop... if it's a normal user then apply your logic, which would trigger the update by the service account which would be ignored.

That's what the blog post details: https://powerusers.microsoft.com/t5/Power-Automate-Community-Blog/SharePoint-Managing-Recursive-Even...

HTH

Jay

 

Hi @Jay-Encodian 

 

Do I create the flow as per the screenshots in your blog if not could you please provide a screenshot example for me to follow? but with a different service account?

@MoEdu 

Hopefully the blog post is pretty clear... you just need to integrate the logic into your Flows and test.

I'm sure you can appreciated that it's very time consuming for us to totally rebuild your Flow to your exact requirements... you should now have the guidance you need to stop event recursion in your Flow?

Cheers J

hi @Jay-Encodian 

 

No worries, you have been more than helpful. I'll give it a go and refer to your blog

 

will report back, many thanks 🙂

@MoEdu 

👍It's the best way to learn, let me know how you get on

Cheers J

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

Users online (2,007)