cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Approval workflow Sharepoint List Field Update

Hello,

 

I am new to Sharepoint and Flow.  I am creating a Leave Request Approval.  I was able to create the request, the flow to send an approval message, and the email sent to the employee with the Accept or Refused.  I want the Sharepoint List to be updated with this response.  How can I have the Sharepoint status field updated with the response sent via Work Flow?

1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

I was able to fix the problem by removing the Versioning setting and set it to "no".  Now the colomn is updating. Thank you!

View solution in original post

22 REPLIES 22
abm
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

If your SharePoint status is choice field type then it is not supported for the updates from flow. This is a limitation in current SharePoint flow templates and infurture we are hoping to get this resolved. There are similar posts around in this forum mentioned about choice field SharePoint item updates.

 

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-yamao-msft
Community Support
Community Support

Hi Kath,

 

Say you have a SharePoint list likes below. The Approve Status is a Text column.

Holiday list.PNG

 

Then I create a flow to send an Approval email when a new item is created, then send an email with the Accept or Reject status, then update item in the list. Below is a screenshot of the flow configuration:

Holiday flow.PNG

 

Hope this can be a reference for you.

 

Best regards,
Mabel Mao

 

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

flow.png

Thanks for your answer.

 

Here is the list that I have created.  The colomn "Approval Status" was not created by me. It is added automatically by the system.  The status change to pending when the request is send, but it doesn't change when the request is approved or rejected by supervisor.

 

Also, in the Versioning setting, I selected: 

Require content approval for submitted items?
 Yes   

 

The flow is still not working.

abm
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

Can you please check the list settings and find more about the Approval Status column? Most likely it is not a text field. Please let us 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

Hi Kath,

 

Just as @abm said, please check the type of Approve Status column. I have created a similar list with you, but there is no “Approve Status” column was added automatically by the system.

 

If I create a Choice column “Approve Status” in the list, when I configure the “Update item” action in the flow, there is no field for “Approve Status”. It seems that Choice column type is not supported in flow.

Best regards,
Mabel Mao

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

I was able to fix the problem by removing the Versioning setting and set it to "no".  Now the colomn is updating. Thank you!

abm
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

That is good news and letting us know. Can you please confirm that it was a text field or not?

 

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
Anonymous
Not applicable

The added colunm by the system is not in the list.  So, I don't know if it is a text field.

 

approval.pngapproval2.png

This solution worked perfectly for me! We just need to get the communication formatting down. I want to train others on this! Smiley LOL

Would you be so kind to share a screen shot of your expanded Approval FLOW.

 

I set versioning to "NO" but still can't get Approval Status to switch from "Pending" to "Approved/Rejected". Besides this issue my Flow runs fine.

 

thanks


@Kath wrote:

I was able to fix the problem by removing the Versioning setting and set it to "no".  Now the colomn is updating. Thank you!


 

Kath,

My flow doesn't allow the system column approved/rejected to be amended.

I'm guessing this updated automatically...

 

Can you please confirm you didn't add this into your flow.

Could you also provide a sceenshot of the the validation setting you changed.

 

Thanks

If you removed the Versioning Setting and set to know, what happens now with the idea of new items not viewable to others until approved?

I have the same problem! I need versioning on as I don't want drafts viewed until approved/major version created.

 

Did anyone find a solution to this. Is seems that an 'approval workflow' should include update of the 'approval status'?

I am having the same issue. I can get the emails to send out, but can not switch Approval Status from "Pending". Could anyone share screenshots of their FLOW with this working?

I succeeded to update approval status in a library using versioning (minor and major versions) by using HTTP POST Rest API and updating field OData__ModerationStatus to value 0 (accepted) or 1 (Rejected) depending of approval response.

 

Can you share the code you used in Flow to achieve this (with as much detail on what you actually did as possible please, as Flow documenation is almost non-existent)?

 

Cheers

Hello @simonjhudson

 

Sorry for late reply, I had some issues to log in to the community

 

When the action "Approvals" is approved (or rejected) you need to update sharepoint list using API.

 

1 . You need to get your authorization bearer token as it is explained here

 

http://sharepointscribblings.blogspot.be/2017/07/call-any-sharepoint-rest-api-from.html

 

2.Collect answer(s) from approvals action (using data operations select or parse json) depending of which data you need for further actions

 

3.Use variable to transform answer to the appropriate number accroding moderationstatus values (0 1 2 or 3)

 

4.Post to yoursite/_api/contextinfo with your token from step 1 as authorization (using Accept and Content type headers : application/json;odata=verbose) to get you formdigestvalue

 

5.From output 4, get the FormDigestValue value from outout4 using Compose action.

The expression is

d.GetContextWebInformation.FormDigestValue

 

6.Compose the body for post 7 using the metadata moderation status schema

 

{ "__metadata": { "type": "SP.Data.<listname>Item" }, "OData__ModerationStatus": <your status>" }

 

7.Post to your doclist using api

 

{ "Accept": "application/json;odata=verbose", "Content-Type": "application/json;odata=verbose", "Authorization": "Bearer <Token>", "X-RequestDigest": <Output 6>", "IF-MATCH": "*", "X-HTTP-Method": "MERGE", "content-length": <length of output6> }

 

Hope it helps

 

 

 

I have an approval list for creation of new O365 groups.

I wanted to approve the list items directly from the email using Flow.

I tried out myself but for some reason it did not work but using the method described below, I was able to do it. Thank you to the author!

Found this solution: https://www.techmikael.com/2018/05/use-microsoft-flow-to-implement.html#comment-form

I tried it out, I also works for me for approval of Sharepoint list items. Really helpful since microsoft has not implemented list items in "set content approval status".

  

Note: this solution is for Lists where Approval is enabled and the field is not a manually created field but maintained by the system so you can not use it in the Flow.

Note: the approval process can take some time, for test purpose, wait multiple hours, first time took time for some reason, now it works fine.

Note: In "set content approval status", in Library name use List name but not the one from the URL

eg. https://...sites/teamsites/team-orders and the list name is Team orders, use Team orders as library name and not team-orders.

 

I though of using PATCH function to update the "approval status" field instead of "Set content approval status" but I lack the developers knowledge to write the command.

 

flow1.PNGflow2.PNGflow3.PNGflow4.PNGflow5.PNGflow6.PNGflow7.PNGflow8.PNG

 

Don't know if all these steps are needed but it works for me.

Hope this helps!

Michel_Laplane
Frequent Visitor

I arrive after the battle but the trick is that if you want to access to the automatically generated column "ApprovalStatus" you need to get "OData__ModerationStatus" value :

  The value is 0 if the ApprovalStatus is "Approved" 

  The value is 1 if the ApprovalStatus is "Rejected" 

  The value is 2 if the ApprovalStatus is "Pending"  

 

 

2019-09-19_18-26-16.jpg

 

Hope it helps

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 (1,071)