Hi Folks -
I am setting up a new flow to notify users that their new code request (after it has been approved) has been imported into the target financial system. To do this, I have a field called "RequestStatus".
What I need to do is ONLY trigger the flow when the RequestStatus value goes from "Approved" to "Published".
Is this possible? I also use this field for change requests and the values go from "Updated" to "Published" and I obvously dont want the flow to trigger then.
Is this possible?
Hi @simms7400
Where is the data being updated? If you are using the Common Data Service then you can't trigger the Flow to run when a certain value has been set. It is unlikely that you will be able to see the previous value from the field regardless of your trigger so if you only need to catch scenarios where you go from "Approved" to "Published" you may have to look at an alternative approach.
If you can provide details of where your data is currently held I'm sure someone will be able to come up with an appropriate solution.
Follow me on Twitter at @QG_LeeJHarris
Or on LinkedIn at in/leejharris
Hello,
as of today the trigger only works for creations or modifications, meaning any modification. Then you would have to filter to see if it should run the flow or do nothing.
You can also do it in another way. Customize the sharepoint form with a powerapp where they are editing the item, and have that form trigger the flow when they change that value and submit the form.
another way is, if you are using microsoft flow to do the approval, you can also have that flow do the notifications or call another flow that will do them.
@LeeHarris hmmm thank you.
Neither of those options would work for me. Right now, I have a PowerApp that users enter information in. For ew data elements, I have an approval flow set up. Once approved, I then manually go into my Access Database and run a macro which publishes the code to the target applications and sets the RequestStatus from "Approved" to "Published". However, I also wnt a Workflow to trigger then.
I think I may just create another custom column in my SP list and leverage the previous value there in a condition.
@simms7400You can create a flow that can be called from outside. please see this https://flow.microsoft.com/en-us/blog/call-flow-restapi/
Hi @simms7400,
You could add a column named PublishSign, set the value as 1 or 0, the default value is 1, so that it will be four status of RequestStatus:
Each time you modified or create items , the trigger will work, but the next action will run after determine the status of RequestStatus and PublishSign. This way you don't have to worry about triggering flow by changing the value of other columns when RequestStatus is "Published".
After you publish the code, you need to set the PublishSign value as "0" by using action Update item;
If you want to republish the code, you need to set the PublishSign value as "1".
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Read the latest about new experiences and capabilities in the Power Automate product blog.
If you are a small business ISV/Reseller, share your thoughts with our research team.
User | Count |
---|---|
26 | |
25 | |
23 | |
22 | |
14 |
User | Count |
---|---|
48 | |
35 | |
35 | |
31 | |
30 |