cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
toklatt
Helper I
Helper I

How to parse E-Mail Data for several variables

Hi there,

 

I need to set up a flow for parsing information from the SAP Fiori e-mail notification for further workflow operations.

The Ui5 is sending an e-mail to me of which contains every-time the same Item groups but with different languages (German/english).

 

Looks like:

 

subject mail: version 1: Neue Meldung 2: New Notification

body mail: version 1: Meldender version 2: Reported by, etc…

 

First I set up the „when a new mail arrives (v3)“ with send by“ (e-mail of notifier) which then goes to a apply to each on subject and another for the body.

 

I thought to do a content conversion and then use the item function in compose action to the get variables for each German/English Mailform informations - but I can‘t get any information with that - it still crashes.

 

So could anybody give me a hint or how to to get this Information parsing me the data?

 

Most times notifier is sending me German information for which I have a working flow - but things getting more different with additional notifications in English and I just get stucked.

 

Thanks in advance 

26 REPLIES 26
schwibach
Super User
Super User

Hey,

 

if you post screenshots of the flow that you have and of the errors you're encountering, we can give you pointers.

Parsing the string is a good idea.

What you can do is string split if the email has a specific structure. Then put the different elements into compose actions and then use the content as you see fit.
You can use longer strings as condiction where to split. Just take it one step at a time and don't try to do everything at once.

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.
eliotcole
Super User
Super User

What @schwibach said on the screenshots, and if you ensure to embed the screen shots of the design view of your flow so that they are visible on the screen using the photo button, then more people will see them, too. Because some folks cannot download attached files. 👍

 

Thinking Aloud

You may wish to see if the HTML has 'data' attributes for the information that you are after.

 

Any software / developer worth their salt will encode values into the HTML code, so that people can more easily sift it for actual data. It's possible (but not probable) that this is happening with your mails. 🙂

toklatt
Helper I
Helper I

So for the Mail Form of the UI5 the letter direction is same on both languages.

 

From: ui5notif@onmicrosoft.gor

to: my@mailboxcompany.com

 

Subject: 1. Neue Meldung: 12345678 (mem) Wasserleitung verstopft

              2. New Notification: 12345678 (mem) PRIO Alarm Pump M01

Body: Meldender:

          UserID:

 ...

 

or

 

          Reported by:

          UserID

...

For "..." the following names before ":" are same in every notification, content behind ":" is dynamic

 

Basically the UI5 notifies in both languages, but not for each Alert e.g. each notification represents 1 alarm and this could be presented in german OR english. So the flow should respect the given language in which the alert is notified and operate the data according to language because for the split patterns german/english has different spaces in between the data. 

 

So with the data from the mail, the given information then goes to a sharepoint table or excel sheet with add a new row.

 

For some cases if the priority of the notification is High, the data will also be send by e-mail to my alerting service.

 

In the given Data of body are two to three dynamiclay addable information.

 

I startet the flow with "when a new mail arrives (v3)"

then I do a html2text for further proceeding. But I thought how about if it would be possible to directly array the body of the Subject & Mail and then fill the dynamic content but I guess I miss something, to do this correctly. 

 

schwibach
Super User
Super User

The html2text is the right way to go if the data isn't encoded as @eliotcole suggested it might.

 

Then I would recommend you do a condition on whether the body contains "Neue Meldung"... Then you know whether it's in German or in English.

 

Then you deal with the English version and the string splits and in the other path of the condition with the German version.

You could initialise variables for each field that you need directly after the trigger and then set the variables in each path of the condition. Initially set the variables to some string that you will recognise as not having been changed such as "TestUserID" 

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.
toklatt
Helper I
Helper I

I have tried the way with condition and switch - but I can´t get the Information proceeded.

My Flow is actual:

Trigger: When a new Mail arrives (V3):

Bild 28.01.24 um 11.39.jpeg

Bild 28.01.24 um 11.40.jpeg

Bild 28.01.24 um 11.41.jpeg

The confusing thing on that is also, that if I apply the html2text conversation with the body of the E-Mail Data will automatically do the loop and from that loop I don´t get the information further in this flow nor it will trigger an condition or switch.

 

In an other try I had done the Conversations in the main path, but don´t know, why this happen and the Data would not proceed.

Was thinking of a possibility to write the Data each in an Variable for use it different in the following flow, but I really get stucked right at the Moment for that I can´t see the point, why the flow has this behaviour.

 

Because of the trigger in the subject the flow should decide if it should proceed in german or to switch in english and then parse the mail accordingly. Parsed Innformation the get stored in a sharepoint and for Priority will send via E-Mail to the alarm Provider too.

But what do I missing?

 

 

schwibach
Super User
Super User

You don't need all these loops.

Start with a simple compose action for you subject and an html2text for the body.

 

schwibach_0-1706439591658.png

 

You can copy this into the compose action

@{triggerOutputs()?['body/subject']}

 

and this into the html2text

@{triggerOutputs()?['body/body']}

 

Once you have the text, we'll do the next step.

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

I have tried build the flow as shown:

Bild 28.01.24 um 12.40.jpeg

 

 Added the time stamp for later data in the workflow, and then the next step:

Bild 28.01.24 um 12.41.jpeg

 

and when I hit the apply/OK button, I get this error:

 

Bild 28.01.24 um 12.41 (1).jpeg

 it will not apply the trigger out... and I don´t see, why this will happen. Looks like the trigger won´t output anything, but it does. So why this error occour - I don´t know 

Now the steps Compose = MailSubject:

 

748AB2DB-BA84-477F-B965-F165D0DAA1C8.jpeg

 

Test -> successful & then the htm2ltext for the mail body:

 

Bild 28.01.24 um 12.58.jpeg

 

With that, I get no Data so I reduced body/ in the conversation as followed:

80EE7A61-40D4-428E-AE9C-E42222609D74.jpegTested the flow and the subject is right in the compose action and the notification mailtext is in the html2text conversation with the correct data.

 

So for so far as I see, the data must be first processed to gather information this Notification is in english or german - most notifications are in german, but some don´t. So the spaces for further split actions e.g. space inbetween "Neue Meldung" and "New Notification" so that in the following part of the flow first condition check hit the right path of the flow to reduce the possibility of incorrect data I was also asking myself, if by using it in a condition und with only two languages in possibility, a switch could do the job instead of a condition better?

 

In a condition I will do the german part in the "NO" Path and in the "YES" path I do the english part.

But in the first run I had done the conditions in the Order german and english and only go to YES do the Data parse in this step - this by know had has collided painfully and have not worked.

 

So far as I see the description the Switch is same like condition, so I thought I do the activation of english by the subject and go there the path... but also don´t work 😞 

 

Any Suggestions? 

Now the flow with further Proceeding and parse Mail Information for the next Step of gather the information is it german or english:

Bild 28.01.24 um 13.34.jpeg

Until this step, all information was parsed in the flow from the hited trigger and for the decision of the provided language: use a condition here or a switch for fast and smooth data parsing? 

schwibach
Super User
Super User

Can you post the results of a successful run?

It's important to see the content of the flow steps and then design the following steps accordingly.

What you'll want as a next step is Condition (in German: Bedingung) where we will check if the Subject contains (enthält) "Neue Meldung:"
Put a Compose action in both paths and run the flow to see if that part works.... Then you're ready to take the next step. 

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

The Successful flow until now:

00B8D7DD-992A-410E-9B86-F7AA493890A5.jpeg

 

E02BE144-682A-49F3-BC3B-304AA2D5909B_4_5005_c.jpeg

 

Then Save & do a test Run:

 

067C4968-B845-4998-B2B6-3B25B43644E4.jpeg

with the provided parse:

 

In the "MailSubject" action:

C39553A7-A2D2-4456-8463-33AD19FD2237.jpeg

 

Then in the html2text action:

 

DEEDCE05-DEDD-4C90-9ABC-EDE53B26AAF6.jpeg

 

1124C144-535E-47B9-8651-D0F8C535EEDA.jpeg

 

 

 So as you see, in a german Notification from the Monitoring the Subject parsed is: "Neue Meldung" followed by ":" 1 space - then 8 Digits (Number in the System) with follow "," as Deliminiter. 

The Notification (Mail Body) parsed Informations accordingly - First Block "Meldender" followed by ":" which is same in every german notification and in english the correspondenting word accordingly, the 1 space and the dynamic part of each notification begins.

 

Let´s say at "Neue Meldung" it is: Neue Meldung: 14 Spaces to compose the Number itself I guess and in english New Notification: and 34 Spaces to calculate the provided Number by itself.

 

The Entitities are same in every body such a e.g. "Meldender:", "Arbeitsplatz", then spaces are filled by power automate slash r slash n. A nice optimization would be to drop the empfy spaces to receive the detailed information.

 

but to do a filter for a condition I need to have an array, am I right?

 

From this Part on I guess the condition should set in or?

schwibach
Super User
Super User

The content you get in your compose actions is a bit strange.

In the mail subject and in the mail text you are getting an object with an array, named value.

Can you show us the outputs of the trigger?
It should look like this:

schwibach_0-1706451737112.png

 

 

Also, can you click the three dots on the trigger, click "peek code" and take a screenshot like this:

schwibach_1-1706451827485.png

 


It seems to me that your trigger outputs are very different from mine even though the action seems to be the same.

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

On the Trigger Peek Code - 2 Screenshots because of the lines:

5238F246-B14C-470A-99AA-F7D13E55B095.jpeg

 

49FD9746-DEB8-4C6B-A59E-8AEBBFB0C87C_4_5005_c.jpeg

 

I thought if it would ne possible to initialize Variable for the mail so that I could have the variables "Subject" to process in the first place the language path and with the body of the mail for that every line most begin with the same words before ":" each, except for those notifications provides by a different alarm provider which has additional. "word" with dynamic information boyond but not every time so there has to be additional condition filters to only parse those information if the expected word is in the mail.

schwibach
Super User
Super User

Can you please also provide a screenshot of the trigger outputs?

The trigger action seems to be the same, but I'll need the ouputs to tell you what the dynamic reference needs to be.

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

On the Trigger (First Step in Flow) the inputs in peek code are:

11FF06CA-6C1D-4C1B-BAD3-C79CDE19932D_4_5005_c.jpeg

 And the peek code of outputs are:

EC40F885-1DF6-4B9D-B020-592F5DCB3DAE.jpeg

 

If there is a better way to show data please let me know, I will become better by doing code stuff.

 

schwibach
Super User
Super User

OK, so it seems to give you an array in your trigger.


This is what you should use to extract the subject:

triggerBody()['value'][0]['subject']

 

This for the email body:
triggerBody()['value'][0]['body']

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

So with this both set in different compose actions, first the flow overview:

835F443B-058E-4870-826D-603CA82C3FB4.jpeg

 

Then we come to the compose action:

 

7F14E0C1-A131-4A9C-AE56-27C27E386DB6.jpeg

 

the flow runs successfully and give the following information back:

 

A152B56F-7E38-4601-B6E8-BF95C194254D.jpeg

this is for the subject of the mail and the body of the mail is:

919210A0-77CF-47DA-AFB0-E9973E9B99A5.jpeg

 so in the next step I could set a condition for select german/english but it won´t hit ...

in the german path I will select the data and according in english if the notification is in english. Also there are sometimes the phone numbers of the ticket owners so the whole entitities of the notification mail could get parsed in an sharepoint with add a new row... 

schwibach
Super User
Super User

Can you show the condition?

Put a compose action in each path with the content of the email body.

__________________________________
Please mark topics as solved if they are and give kudos to make people happy 🙂
Always interested to hear about solutions/problems in the education sector.

I have now striped the flow first:

4BF9CE34-8A24-4AE2-B455-E456BA8AC47C.jpeg

 

This will show all data from the mail and so I have made two conditions to go in the german or the english path.

 

Could you say, that a switch would be better for that?

 

Condition German is:

 

712EC793-441B-4D58-8ED6-390FA4A0CDA7.jpeg

 

and in the test with the normal german notification:

 

96D5C42E-ED19-4B59-BE37-F852A63D92ED_4_5005_c.jpeg

 

and for the english notification:

 

81479EFB-BEC7-48EF-BEBA-E06679AC277E.jpeg

 

so with the test it gave back:

 

B60F7F77-F6EE-41A3-BCBF-D346CB16EECF_4_5005_c.jpeg

 

So I would think, the path´s are recognised as german so the condition is true and it contains not "New Notification" so the condition is not met as the notification is in german.

 

Then the further steps should be in the conditions - am I right? If so: Is it a good Idea to have a failsave in the No section to securely parse every notification?

 

And for variables to use later, how to process?

Helpful resources

Announcements

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.       This Week: All About Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most. Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

Tuesday Tip: Subscriptions & Notifications

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week: All About Subscriptions & Notifications We don't want you to a miss a thing in the Community! The best way to make sure you know what's going on in the News & Announcements, to blogs you follow, or forums and galleries you're interested in is to subscribe! These subscriptions ensure you receive automated messages about the most recent posts and replies. Even better, there are multiple ways you can subscribe to content and boards in the community! (Please note: if you have created an AAD (Azure Active Directory) account you won't be able to receive e-mail notifications.)   Subscribing to a Category  When you're looking at the entire category, select from the Options drop down and choose Subscribe.     You can then choose to Subscribe to all of the boards or select only the boards you want to receive notifications. When you're satisfied with your choices, click Save.     Subscribing to a Topic You can also subscribe to a single topic by clicking Subscribe from the Options drop down menu, while you are viewing the topic or in the General board overview, respectively.     Subscribing to a Label Find the labels at the bottom left of a post.From a particular post with a label, click on the label to filter by that label. This opens a window containing a list of posts with the label you have selected. Click Subscribe.     Note: You can only subscribe to a label at the board level. If you subscribe to a label named 'Copilot' at board #1, it will not automatically subscribe you to an identically named label at board #2. You will have to subscribe twice, once at each board.   Bookmarks Just like you can subscribe to topics and categories, you can also bookmark topics and boards from the same menus! Simply go to the Topic Options drop down menu to bookmark a topic or the Options drop down to bookmark a board. The difference between subscribing and bookmarking is that subscriptions provide you with notifications, whereas bookmarks provide you a static way of easily accessing your favorite boards from the My subscriptions area.   Managing & Viewing Your Subscriptions & Bookmarks To manage your subscriptions, click on your avatar and select My subscriptions from the drop-down menu.     From the Subscriptions & Notifications tab, you can manage your subscriptions, including your e-mail subscription options, your bookmarks, your notification settings, and your email notification format.     You can see a list of all your subscriptions and bookmarks and choose which ones to delete, either individually or in bulk, by checking multiple boxes.     A Note on Following Friends on Mobile Adding someone as a friend or selecting Follow in the mobile view does not allow you to subscribe to their activity feed. You will merely be able to see your friends’ biography, other personal information, or online status, and send messages more quickly by choosing who to send the message to from a list, as opposed to having to search by username.

Monthly Community User Group Update | April 2024

The monthly Community User Group Update is your resource for discovering User Group meetings and events happening around the world (and virtually), welcoming new User Groups to our Community, and more! Our amazing Community User Groups are an important part of the Power Platform Community, with more than 700 Community User Groups worldwide, we know they're a great way to engage personally, while giving our members a place to learn and grow together.   This month, we welcome 3 new User Groups in India, Wales, and Germany, and feature 8 User Group Events across Power Platform and Dynamics 365. Find out more below. New Power Platform User Groups   Power Platform Innovators (India) About: Our aim is to foster a collaborative environment where we can share upcoming Power Platform events, best practices, and valuable content related to Power Platform. Whether you’re a seasoned expert or a newcomer looking to learn, this group is for you. Let’s empower each other to achieve more with Power Platform. Join us in shaping the future of digital transformation!   Power Platform User Group (Wales) About: A Power Platform User Group in Wales (predominantly based in Cardiff but will look to hold sessions around Wales) to establish a community to share learnings and experience in all parts of the platform.   Power Platform User Group (Hannover) About: This group is for anyone who works with the services of Microsoft Power Platform or wants to learn more about it and no-code/low-code. And, of course, Microsoft Copilot application in the Power Platform.   New Dynamics365 User Groups   Ellucian CRM Recruit UK (United Kingdom) About: A group for United Kingdom universities using Ellucian CRM Recruit to manage their admissions process, to share good practice and resolve issues.    Business Central Mexico (Mexico City) About:  A place to find documentation, learning resources, and events focused on user needs in Mexico. We meet to discuss and answer questions about the current features in the standard localization that Microsoft provides, and what you only find in third-party locations. In addition, we focus on what's planned for new standard versions, recent legislation requirements, and more. Let's work together to drive request votes for Microsoft for features that aren't currently found—but are indispensable.   Dynamics 365 F&O User Group (Dublin) About: The Dynamics 365 F&O User Group - Ireland Chapter meets up in person at least twice yearly in One Microsoft Place Dublin for users to have the opportunity to have conversations on mutual topics, find out what’s new and on the Dynamics 365 FinOps Product Roadmap, get insights from customer and partner experiences, and access to Microsoft subject matter expertise.  Upcoming Power Platform Events    PAK Time (Power Apps Kwentuhan) 2024 #6 (Phillipines, Online) This is a continuation session of Custom API. Sir Jun Miano will be sharing firsthand experience on setting up custom API and best practices. (April 6, 2024)       Power Apps: Creating business applications rapidly (Sydney) At this event, learn how to choose the right app on Power Platform, creating a business application in an hour, and tips for using Copilot AI. While we recommend attending all 6 events in the series, each session is independent of one another, and you can join the topics of your interest. Think of it as a “Hop On, Hop Off” bus! Participation is free, but you need a personal computer (laptop) and we provide the rest. We look forward to seeing you there! (April 11, 2024)     April 2024 Cleveland Power Platform User Group (Independence, Ohio) Kickoff the meeting with networking, and then our speaker will share how to create responsive and intuitive Canvas Apps using features like Variables, Search and Filtering. And how PowerFx rich functions and expressions makes configuring those functionalities easier. Bring ideas to discuss and engage with other community members! (April 16, 2024)     Dynamics 365 and Power Platform 2024 Wave 1 Release (NYC, Online) This session features Aric Levin, Microsoft Business Applications MVP and Technical Architect at Avanade and Mihir Shah, Global CoC Leader of Microsoft Managed Services at IBM. We will cover some of the new features and enhancements related to the Power Platform, Dataverse, Maker Portal, Unified Interface and the Microsoft First Party Apps (Microsoft Dynamics 365) that were announced in the Microsoft Dynamics 365 and Power Platform 2024 Release Wave 1 Plan. (April 17, 2024)     Let’s Explore Copilot Studio Series: Bot Skills to Extend Your Copilots (Makati National Capital Reg... Join us for the second installment of our Let's Explore Copilot Studio Series, focusing on Bot Skills. Learn how to enhance your copilot's abilities to automate tasks within specific topics, from booking appointments to sending emails and managing tasks. Discover the power of Skills in expanding conversational capabilities. (April 30, 2024)   Upcoming Dynamics365 Events    Leveraging Customer Managed Keys (CMK) in Dynamics 365 (Noida, Uttar Pradesh, Online) This month's featured topic: Leveraging Customer Managed Keys (CMK) in Dynamics 365, with special guest Nitin Jain from Microsoft. We are excited and thankful to him for doing this session. Join us for this online session, which should be helpful to all Dynamics 365 developers, Technical Architects and Enterprise architects who are implementing Dynamics 365 and want to have more control on the security of their data over Microsoft Managed Keys. (April 11, 2024)       Stockholm D365 User Group April Meeting (Stockholm) This is a Swedish user group for D365 Finance and Operations, AX2012, CRM, CE, Project Operations, and Power BI.  (April 17, 2024)         Transportation Management in D365 F&SCM Q&A Session (Toronto, Online) Calling all Toronto UG members and beyond! Join us for an engaging and informative one-hour Q&A session, exclusively focused on Transportation Management System (TMS) within Dynamics 365 F&SCM. Whether you’re a seasoned professional or just curious about TMS, this event is for you. Bring your questions! (April 26, 2024)   Leaders, Create Your Events!    Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you. Just leave a comment or send a PM here in the Community!

Users online (5,181)