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

Create a news post when a list item is created

Is there a flow when a new list item is created it creates a news post with the info from that list item?

1 ACCEPTED SOLUTION

Accepted Solutions
Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @PrasadAthalye ,

 

Sorry to bud in. But I think @Anonymous is talking about SharePoint news posts (pages with promoted state of 1 or 2).

 

If you are talking about another type of news posts, ignore my example below  😁

 

test_newspost.png

 

 

You could create these via the SharePoint REST API. Below is an example.

 

1. Add a when an item is created trigger action. Configure it to use a list.
In my example this CMS_NewsPosts list has two columns, Title and Description (both single line of text type).whenanitemiscreated.png

 

2. Add a Send an HTTP request to SharePoint action. For the creating of the draft news post. Use the site address field for the destination site of the page.

 

URI

/_api/sitepages/pages

 

Body

{"__metadata":{"type":"SP.Publishing.SitePage"},"PromotedState":1,"PageLayoutType":"Article"}

 

restapi_createpage_newspost.png

 

3. Add a Send an HTTP request to SharePoint action. For the checkout of the page. 

 

URI

/_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/checkoutpage

 

restapi_checkoutpage_id.png

 

4. Add a Send an HTTP request to SharePoint action. The title and the text within the page are set.

In this example I am using the Title and a Description field from the trigger action.

 

URI

_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/SavePageAsDraft

 

Body

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n      Title area\\n    \",\"description\":\"\\n      Title area description\\n    \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"\"},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"@{triggerOutputs()?['body/Description']}\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","Title":"@{triggerOutputs()?['body/Title']}"}

 

restapi_savepageasdraft.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


View solution in original post

38 REPLIES 38
PrasadAthalye
Community Champion
Community Champion

Can you please clarify what do you mean by a new post? Are you referring to a Twitter post?

Please Like and Mark this as Answer if it resolves your Issue.

Power Automate Community
Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @PrasadAthalye ,

 

Sorry to bud in. But I think @Anonymous is talking about SharePoint news posts (pages with promoted state of 1 or 2).

 

If you are talking about another type of news posts, ignore my example below  😁

 

test_newspost.png

 

 

You could create these via the SharePoint REST API. Below is an example.

 

1. Add a when an item is created trigger action. Configure it to use a list.
In my example this CMS_NewsPosts list has two columns, Title and Description (both single line of text type).whenanitemiscreated.png

 

2. Add a Send an HTTP request to SharePoint action. For the creating of the draft news post. Use the site address field for the destination site of the page.

 

URI

/_api/sitepages/pages

 

Body

{"__metadata":{"type":"SP.Publishing.SitePage"},"PromotedState":1,"PageLayoutType":"Article"}

 

restapi_createpage_newspost.png

 

3. Add a Send an HTTP request to SharePoint action. For the checkout of the page. 

 

URI

/_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/checkoutpage

 

restapi_checkoutpage_id.png

 

4. Add a Send an HTTP request to SharePoint action. The title and the text within the page are set.

In this example I am using the Title and a Description field from the trigger action.

 

URI

_api/sitepages/pages(@{outputs('Send_an_HTTP_request_to_SharePoint')?['body']?['d']['Id']})/SavePageAsDraft

 

Body

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n      Title area\\n    \",\"description\":\"\\n      Title area description\\n    \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"\"},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"@{triggerOutputs()?['body/Description']}\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","Title":"@{triggerOutputs()?['body/Title']}"}

 

restapi_savepageasdraft.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Anonymous
Not applicable

@Expiscornovus, your post has been  very helpful.  I'm having a hard time with the formatting on the news post.

Can you offer some pointers?

 

And is there a way to auto post the news post?  

 

Thank you for everything!

 

thressac_0-1616513708728.png

 

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous,

 

Apologies for the delayed reply. 

 

You can use the following HTTP request to publish the news post.

 

publishnewspost.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


Hi @Expiscornovus ,

 

I am getting error as :

The property '__metadata' does not exist on type 'SP.Publishing.SitePage'. Make sure to only use property names that are defined by the type.
clientRequestId: b9b3295e-01b5-433d-9822-00211bbbafc8
serviceRequestId: c94be69f-c0b5-c000-499b-0b63ef4b74ea

 

Kumars100_0-1629178820796.jpeg

 

Hi @Expiscornovus  Sorry for disturbing. Your solution really helped me in doing the bits I wanted for my NEWs post.

Just a tiny questions...How Can I add background Image to the news page.

I added link to the image source in the json but nothing happened , probably I am banging my head searching for the script.

Your help will be immensely appreciated/. Thanks 

test.JPG

 

Hi @Kumars100 probably You might have figured it out by now, if not I also came across same and I typed exactly same like @Expiscornovus with space after json; odata

 

E.JPG

Expiscornovus
Most Valuable Professional
Most Valuable Professional

Hi @schoden,

 

Just had a quick look. It should be possible by updating the control like this in the CanvasContent1 section of the json.

 

 

{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"<p>This is a description<br></p><p><a href=\\\"https://www.microsoft.com\\\" data-cke-saved-href=\\\"https://www.microsoft.com\\\" target=\\\"_self\\\" data-interception=\\\"on\\\" title=\\\"https://www.microsoft.com\\\">Microsoft Hyperlink</a><br></p>\",\"emphasis\":{},\"zoneGroupMetadata\":{\"type\":0}}

 

 

hyperlinkjson.png



Happy to help out! 🙂

Interested in more #PowerAutomate #SharePointOnline or #MicrosoftCopilotStudio content?
Visit my blog, Subscribe to my YouTube channel or Follow me on Twitter


@Expiscornovus Greatly appreciate your time and effort. Helped me so much 😄 

If I wanted to format a table or something the post function fails. I am assuming I need some sort of breaks before I use special characters to set the table styles with this method? I noticed it would also fail if I had new line breaks so I made sure the string I create for my table is formatted into a single line.

 

Adding the Style info causing the post to fail below.

 

<table style="width:100%"><tr><th>Form Number</th><th>Description</th><th>Last Used Date</th></tr><tbody>

 

Also tried creating a variable to store my style settings but doesn't seem to apply when the page is created.

<head><style>table, td, th {border: 1px solid black;}table {border-collapse: collapse; width: 100%;}th, td {text-align: left; padding: 8px;}tr:nth-child(odd){background-color: #f2f2f2}th {background-color: #005b9a; color: white;}</style></head>

 

Hi @Expiscornovus ,

 

If have a file saved in Site Pages already with a promoted state 0. How can I publish it to a news page that will be displayed on the news web part?

 

can I simply uses the publish http request to change the promoted state from 1 to 2?

 

Your expertise will be greatly appreciated - Thanks. 

 

I resolved my issue by using the following URIComponentToString

 

uriComponentToString(replace(uriComponent(variables('Table')), '%0A'''))

Awesome solution, @Expiscornovus, this worked great for me! You are clearly a genius. 😉 Thank you so much!

 

I'm wondering if you can help me take this solution a little further. I would like to write a few custom metadata values from the list to the library when the page is created. Any advice on how I can do that? I've tried a few different approaches but nothing has worked so far.

thanks, @Expiscornovus for the great building of the flow

 

I just have a problem with the step for saving as a draft it always shows me an error bad gateway. When removing the description content it ends successfully. 

I have a similar flow built to create a site page using columns from a list. The flow works fine until I try to insert a rich text column from the list I suspect that it is failing when the html gets inserted into the POST and needs some sort of string replacement. I have used the Compose action with a replace() function to replace " with \" and can see that this action is working, but the POST still fails.

 

Compose:

replace(triggerOutputs()?['body/Detailed_x0020_description'],'"','\"'

 

Resulting POST:

{"__metadata": {"type": "SP.Publishing.SitePage"},"LayoutWebpartsContent": "[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"Title area\",\"description\":\"Title Region Description\",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"https://cdn.hubblecontent.osi.office.net/m365content/publish/165e337b-a8b8-4fa3-84ac-2652220701c9/15...\"},\"links\":{},\"customMetadata\":{\"imageSource\":{\"imgWidth\":2048,\"imgHeight\":939}}},\"dataVersion\":\"1.4\",\"properties\":{\"title\":\"Automate\",\"imageSourceType\":2,\"layoutType\":\"FullWidthImage\",\"textAlignment\":\"Left\",\"showTopicHeader\":false,\"showPublishDate\":false,\"topicHeader\":\"\",\"enableGradientEffect\":true,\"authors\":[],\"authorByline\":[],\"imgHeight\":939,\"imgWidth\":2048,\"hasTitleBeenCommitted\":true},\"reservedHeight\":228}]","CanvasContent1": "[{\"controlType\":4,\"id\":\"0171c194-0f2a-4f56-9868-0c886409c919\",\"position\":{\"zoneIndex\":0.5,\"sectionIndex\":1,\"controlIndex\":1,\"sectionFactor\":4,\"layoutIndex\":1},\"emphasis\":{\"zoneEmphasis\":0},\"zoneGroupMetadata\":{\"type\":0},\"addedFromPersistedData\":true,\"innerHTML\":\"<p><strong>Category:</strong> teaching</p><p><strong>Available to:</strong> employees</p><p><strong>Licensing:</strong> LICENSING</p><p><strong>Install type:</strong> INSTALLTYPE</p><p><strong>Target group:</strong> TARGETGROUP</p><p><strong>Application type:</strong> APPLICATIONTYPES</p><p><strong>System owner: IT</strong> </p><p><strong>Status: active</strong> </p>\"},{\"controlType\":4,\"id\":\"6a8f10b1-ea58-4290-bfff-c23fe79140a6\",\"position\":{\"zoneIndex\":0.5,\"sectionIndex\":2,\"controlIndex\":1,\"sectionFactor\":8,\"layoutIndex\":1},\"emphasis\":{\"zoneEmphasis\":0},\"zoneGroupMetadata\":{\"type\":0},\"addedFromPersistedData\":true,\"innerHTML\":\"<p><div class=\"ExternalClass2D3554E869DD46FA827A0B3A47458D0A\"><div style=\"font-family&#58;Calibri, Arial, Helvetica, sans-serif;font-size&#58;11pt;color&#58;rgb(0, 0, 0);\">TEXT</div></div></p>\"},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","AuthorByline": [],"TopicHeader": "","BannerImageUrl": "https://cdn.hubblecontent.osi.office.net/m365content/publish/165e337b-a8b8-4fa3-84ac-2652220701c9/15...","Title": "DATEV DMS String 3"}
 
Any ideas?

@atolson I have noticed something for this kind of error. During the posting of the text into the site page, the text is too long and I think it is exceeding the limits of the text which is 256. I have tried to add small text and the workflow run successfully. 

@Fatimah_33 Thanks for the suggestion, but my example has less than 256 characters (even with html tags). 

Tan-M_816
Frequent Visitor

Hi All I'm having trouble adding an Image to my news post, hoping someone might have a suggestion?  I've got the flow working to create a news post when a new list item is added and publish to SP but I can't get it to add an image to the banner or the thumbnail.

 

TanM_816_0-1644202281510.png

 

{
"LayoutWebpartsContent":"[{\"id\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"instanceId\":\"cbe7b0a9-3504-44dd-a3a3-0e5cacd07788\",\"title\":\"\\n Title area\\n \",\"description\":\"\\n Title area description\\n \",\"audiences\":[],\"serverProcessedContent\":{\"htmlStrings\":{},\"searchablePlainTexts\":{},\"imageSources\":{\"imageSource\":\"https://companyname.sharepoint.com/:i:/s/Travel2/EZpSSl48dqtKha6lmzjRc2MBN3ZlRXUZA1Noo7K7i6k74w?e=2a..."},\"links\":{},\"customMetadata\":{\"imageSource\":{}}},\"dataVersion\":\"1.4\",\"properties\":{\"imageSourceType\":2,\"title\":\"Test\",\"textAlignment\":\"Left\",\"showPublishDate\":false,\"authors\":[{\"id\":\"\",\"upn\":\"\",\"email\":\"\",\"name\":\"\",\"role\":\"\"}],\"showTopicHeader\":false,\"authorByline\":[\"\"],\"layoutType\":\"CutInShape\",\"titlePlaceholder\":\"Name your news post\",\"topicHeader\":\"\"},\"reservedHeight\":356}]","CanvasContent1":"[{\"controlType\":4,\"id\":\"1212fc8d-dd6b-408a-8d5d-9f1cc787efbb\",\"position\":{\"controlIndex\":2,\"sectionIndex\":1,\"sectionFactor\":12,\"zoneIndex\":1,\"layoutIndex\":1},\"addedFromPersistedData\":true,\"innerHTML\":\"<p>The warning level has been issued as @{triggerOutputs()?['body/Warning_x0020_Level/Value']} <br></p><p><a href=\\\"https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=04...\\" data-cke-saved-href=\\\"https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=04...\\" target=\\\"_self\\\" data-interception=\\\"on\\\" title=\\\"https://companyname.sharepoint.com/sites/Travel2/_layouts/15/listform.aspx?PageType=4&ListId=08c359e...\\">Click here to read the full Warning details for item @{triggerOutputs()?['body/ID']}</a><br></p>\",\"emphasis\":{}},{\"controlType\":0,\"pageSettingsSlice\":{\"isDefaultDescription\":true,\"isDefaultThumbnail\":true}}]","AuthorByline": [],"TopicHeader": "","BannerImageUrl": "https://companyname.sharepoint.com/:i:/s/Travel2/EbHJU0iSw8VIhxdPEKxHXz0BUWfckidbBJKlbhQiJcTKBQ?e=5v...","Title":"@{triggerOutputs()?['body/Title']}"

 

 

What I end up with is 

(thumbnail)

TanM_816_1-1644202727664.png

When I click on the news post it opens to this

TanM_816_2-1644202789733.png

 

What am I missing???

 

Just to be clear the body of the news is orriginally comming from an email directly to myself from an external party, upon receipt a new list item is added to SP.

 

Any suggestions would be extreemly appreciated.

 

Hi there. Your steps worked for me! I wish you had a guide or link to tell us how you wrote all that code down. On top of that, I would like to assign a metadata category to the News Post once it is created by the flow. Where would I add this into the flow? Do you have a online book that will allow me to learn how to edit the json so I can learn how to use these HTTP flow actions?


Thanks,

Cory

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,028)