cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
GregLi
Power Apps
Power Apps

New Analysis Engine

Similar to the dependencies between cells in a spreadsheet that drives recalc, Canvas apps depend on understanding all the dependencies between properties of controls so that data can flow between them properly and efficiently.  We call this process "dependency analysis" and it is something that Studio is doing all the time in the background while you are editing an app.

 

For more than a year, we have been rewriting the analysis engine to both perform better and to optimize the results.  The result is that complex Canvas apps that can take minutes to load should load significantly faster.  It is a major change, at the very heart of Canvas apps, that we have been working on for over a year.

 

We are very excited to announce that this feature is now available as an experimental feature for your testing and feedback.  Please make a copy of complex apps, turn on this setting, see if you run into any problems in Studio and at runtime, and provide feedback here in the forum.   

 

Do not use this feature in production!  There could be subtle behavior differences that will take time to discover, just because the app loads and saves doesn't necessarily mean all is well, some testing is needed too.

 

Thank you!  And with your help we hope to turn this feature on for everyone soon.

 

GregLi_1-1701804999605.png

36 REPLIES 36
AnthonyLin
Regular Visitor

A lot faster but definitely some behavioral differences
jbrutman
Frequent Visitor

I noticed one major difference, but otherwise everything is smooth. Below was the problem and how I solved it

 

On form submission, I used the following code in the first line of the form's OnSuccess property:

UpdateContext({locLastSubmit: FormName.LastSubmit})

 

After this, I go on to update/create some children records, however, it was struggling using locLastSubmit as the value. I added the code below to Line 2 and now it does not have issues:

UpdateContext({locLastSubmit: LookUp([@DataverseTableName],ThisRecord.Identifier = locLastSubmit.Identifier)});

 

I had to do this to three different forms that all have children records which require updating/creating after the form is submitted successfully. Really a minor issue, but thought it prudent to report it.

FYI, the app I created/maintained is quite complex (14 screens, 23 custom data tables, 4 built in data tables, 87 collections). It was getting to a point where I had to refresh the editor every 20 min or so as it would slow down significantly. So far, this change seems to have a significant improvement on the editor. Thank you!

@AnthonyLin , Would please provide more details about the differences that you saw?

@jbrutman Thanks for the details. Would you be able to share the app (.msapp) to further investigate the issue? You can send me the file in a message.

NateF
Frequent Visitor

I experienced a major issue yesterday that was resolved after I turned off the New Analysis Engine. In Power Apps Studio, using authoring version 3.24012.8, I could create collections and use them as data sources for galleries using the items property, but the collections never appeared in the list of available data sources. Similarly, collections (edit: collections created before enabling New Analysis Engine) I completely removed every reference to remained in the data sources list even after dropping off of the collections section of the variables tab.

 

After publishing the app and opening it in the web player, in the Android Power Apps app, and through Teams, the galleries using the collections created after enabling the new analysis engine were not populating. When I hard-coded a table (example: '[{ID:1,Data:[{Datum: "A"},{Datum: "B"}]}]') into the items property of a gallery that wasn't populating then re-published the app, the gallery populated successfully.

 

Using Monitor, I could see Collect, ClearCollect, Remove, and Patch all worked in the background. The only issue was the app failing to update its list of data sources.

ShantanuP
Power Apps
Power Apps

Hi @NateF , Thanks for using new analysis engine.  With new analysis engine, collections don't show up in the list of tables in UX for gallery binding. We are aware of this issue. I didn't understand the other issue that you mentioned. Can you please share repro steps on how I can recreate the issue on my end? This will help the team to investigate it better.

Sure thing, @ShantanuP ,

Sorry for the lack of clarity. I meant to bring up only one issue and share some of the symptoms of that one issue.

 

The issue I observed is after enabling the new analysis engine, the data sources list is not updating as I create or remove collections from the app. Because the data sources list does not include collections created after enabling the new analysis engine, the galleries using those collections do not populate outside of Studio.

 

Immediately after disabling the new analysis engine and re-publishing the app, the data sources list updates and the galleries using the new collections created while the new analysis engine was enabled successfully populate outside of Studio.

 

I was able to reproduce the issue in a new blank canvas app following the steps below. I stopped at step 21 in the attached .msapp file so you can see the issue with the removed collection still appearing in the data sources list and the new collection failing to appear in the data sources list.

 

Steps to reproduce:

1. Create a new blank canvas app. Do not enable the experimental new analysis engine.

2. In App.OnStart create a collection

ClearCollect(BeforeEnablingExperimentalNewAnalysisEngine, "A", "B", "C")

3. On Screen1 insert a blank gallery control

4. Set the Items property of the gallery control to the collection created in step 2

BeforeEnablingExperimentalNewAnalysisEngine

5. Add a label to the gallery template

6. Set the Text property of the label to ThisItem.Value

ThisItem.Value

7. Save and publish the app

8. Open the app outside of Studio to verify the gallery is populating the collection (I used the web player for this repro)

9. In Studio, enable the experimental new analysis engine.

10. Save and publish the app

11. Refresh the page

12. Remove the ClearCollect formula from App.OnStart

13. Remove the collection reference from Gallery1.Items

14. Look in the variables tab -> collections. The collection is gone.

15. Look in the data sources tab. The collection is still showing as a data source.

16. In App.OnStart create a new collection

 

ClearCollect(AfterEnablingExperimentalNewAnalysisEngine, "D", "E", "F")

 

17. Set Gallery1.Items to the collection created in step 16. The gallery populates in Studio.

AfterEnablingExperimentalNewAnalysisEngine

18. Save and publish the app

19. Open the app outside of Studio. The gallery does not populate.

20. In Studio, look in the variables tab -> collections. The new collection is there.

21. Look in the data sources tab. The old collection we removed every reference to is still listed as a data source while the new collection is not in the list of data sources.

22. Disable the experimental new analysis engine

23. Save and publish the app

24. Refresh the page

25. The data sources list has updated

26. Open the app outside of Studio. The gallery populates with the new collection.

Commander_Data
Advocate I
Advocate I

We are using a global variable named 'defaults' (record e.g. defaults.primaryColor, set to Color.Blue) to set various colour fields on controls automatically so I don't need to use blueprint controls. We use this across several Apps and component libraries.

 

When I copy an App, switch the New Analysis Engine on in settings, we get several errors that seem to indicate PowerApps is not a fan of this defaults variable. However, if I edit the variable in App.Formula, it fixes the issue until I next load the App, when the same thing happens.


I was hoping that this was not now a reserved word. If it was, then would editing really fix the errors?! Unless I can find a solution, this means I cannot switch on this setting, and therefore cannot use the new App.Formula functions, that require the new engine, without amending all our Apps and Component libraries.

Authoring Version: 3.24015.12 (Have tried the latest version: 3.24022.7 without success)

 

Any help would be gratefully received.

Thanks

A quick freebie...

fxAddWorkDays(FromDate:Date, Days:Number):Date = IfError(
    With(
        {
            wDOW: Weekday(Today(), StartOfWeek.Monday),
            wDays: Abs(Days)
        },
        If(
            Days = 0,
            FromDate,
            Days < 0,
            DateAdd(FromDate, 0 - (RoundDown(wDays / 5, 0) * 7) - (If(wDOW > Mod(wDays, 5), Mod(wDays, 5), Mod(wDays, 5) + 2))),
            DateAdd(FromDate, (RoundDown(wDays / 5, 0) * 7) + (If(wDOW + Mod(wDays, 5) > 5, Mod(wDays, 5) + 2, Mod(wDays, 5))))
        )
    ),
    Blank()
);

Thanks for testing it out! Sounds like a bug. Can you attach a copy of an app that shows the issue? 

Helpful resources

Announcements

Tuesday Tip: Community User Groups

It's time for another 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!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

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)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

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